posted 12 years ago
What you are seeing there is the result of calling the toString() method of the Player object. Since you haven't provided an implementation of that method, you get the default implementation provided by the Object class.
So implement a toString() method in your Player class and have it return whatever you want to see in that combo box.