Hi,
I define enums:
enum itemType {First, Second, Third};
public class Item
{
private itemType enmItemType;
...
}
How do I use it inside Dialog box using JComboBox? Means, inside the dialog box, the user will have combo box with (First, Second, Third). Also, is it better to use some sort of ID to each numerator? (Integer)
thanks.