I want a JCheckbox that has 3 states as shown below:
JCheckbox
Q1. Can I use the JCheckbox for the above purpose or have to go for some custom swing component?
Here is an example for a TristateCheckBox:
http://www.javaspecialists.co.za/archive/Issue145.html
How can I check if a JCheckBox is checked?
Both ActionListener and ItemListener are used to fire an event with JCheckBox? So, what's the difference between them and in which case one of them is preferred to the other?
Does anyone know how to put a JCheckBox in a JTable column? Something like this: I took this from How To use Tables Thanks in advance.