|
|
Return
to JAVA JTree list |
Best books about JAVA programming:
|
JAVA JComboBox
This example shows how to extends JLabel and ListCellRenderer
to disable serveral items in JComboBox. It includes 2 files: DisabledComboBoxExample.java and interface CanEnable.java
public interface CanEnable {
public void setEnabled(boolean isEnable);
public boolean isEnabled();
}
|
|
|