java - Is there a JCheckBox listener for itemstateNOTchanged? -


i looking way add checkboxes in list, executing setselected(bool) method in jcheckbox. example:

//all checkboxes false cb1.setselected(true); cb2.setselected(true); cb3.setselected(false); cb4.setselected(false); 

itemlistener trigger on cb1 , cb2. actionlistener not trigger @ (only on doclick).

is there listener trigger, state not change method setselected(bool) executed?

thank =)


Comments

Popular posts from this blog

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -