To set a JCheckBox is using setSelected method with a boolean condition. Which method do i use to get the boolean data out of the JCheckBox. Thanks
Did you mean to check if the JCheckbox is selected? if so use isSelected()
You can also use an ItemListener in case you want to get notified about the check and uncheck!