| javax.swing.plaf.synth.SynthConstants
SynthConstants | public interface SynthConstants (Code) | | The SynthConstants contains possible states for the Component. The states
divided into 2 groups: primary (at least one of the states should be present)
and additional (component state may also contain this states)
|
DEFAULT | static int DEFAULT(Code) | | The component (a JButton) is marked as default (additional)
|
DISABLED | static int DISABLED(Code) | | The component is disabled (primary)
|
ENABLED | static int ENABLED(Code) | | The component is enabled (primary)
|
FOCUSED | static int FOCUSED(Code) | | The component is focused (additional)
|
MOUSE_OVER | static int MOUSE_OVER(Code) | | The mouse arrow is over the component (primary)
|
PRESSED | static int PRESSED(Code) | | The component is in pressed state (primary)
|
SELECTED | static int SELECTED(Code) | | The component is selected (additional)
|
|
|