CheckBox in TreeTable
I am looking for TreeTable example with Checkbox. Is there any example availble for implenting Checkbox in TreeTable.
I have tried building TreeTable using
http://java.sun.com/products/jfc/tsc/articles/treetable1/
http://java.sun.com/products/jfc/tsc/articles/bookmarks/
Please help me.
In the link above, some code has been suggested for using checkbox..but i don't know how to use it..
public class CheckBoxRenderer extends JCheckBox
implements TableCellRenderer {
public Component getTableCellRendererComponent(JTable table,
Object value, boolean isSelected,
boolean hasFocus, int row, int column) {
setSelected(((Boolean)value).booleanValue()));
return this;
}
}