java - Is this the correct way to access the objects -
i'm trying list of objects jcombo box
it suggested
private jcombobox<object> levelcombobox; levelcombobox = new jcombobox<object>(loglevel); levelcombobox.setenabled(false); but i'm confused array list of objects or reference reference object class though? thanks
jcombobox<object> jcombobox can filled objects. <object> part called generic, there tutorial here.
Comments
Post a Comment