- java.lang.Object
- 
- javax.swing.plaf.synth.ColorType
 
- 
 public class ColorType extends Object A typesafe enumeration of colors that can be fetched from a style.Each SynthStylehas a set ofColorTypes that are accessed by way of theSynthStyle.getColor(SynthContext, ColorType)method.SynthStyle'sinstallDefaultswill install theFOREGROUNDcolor as the foreground of the Component, and theBACKGROUNDcolor to the background of the component (assuming that you have not explicitly specified a foreground and background color). Some components support more color based properties, for exampleJListhas the propertyselectionForegroundwhich will be mapped toFOREGROUNDwith a component state ofSynthConstants.SELECTED.The following example shows a custom SynthStylethat returns a red Color for theDISABLEDstate, otherwise a black color.class MyStyle extends SynthStyle { private Color disabledColor = new ColorUIResource(Color.RED); private Color color = new ColorUIResource(Color.BLACK); protected Color getColorForState(SynthContext context, ColorType type){ if (context.getComponentState() == SynthConstants.DISABLED) { return disabledColor; } return color; } }- Since:
- 1.5
 
- 
- 
Field SummaryFields Modifier and Type Field Description static ColorTypeBACKGROUNDColorType for the background of a region.static ColorTypeFOCUSColorType for the focus.static ColorTypeFOREGROUNDColorType for the foreground of a region.static intMAX_COUNTMaximum number ofColorTypes.static ColorTypeTEXT_BACKGROUNDColorType for the background of a region.static ColorTypeTEXT_FOREGROUNDColorType for the foreground of a region.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetID()Returns a unique id, as an integer, for this ColorType.StringtoString()Returns the textual description of thisColorType.
 
- 
- 
- 
Field Detail- 
FOREGROUNDpublic static final ColorType FOREGROUND ColorType for the foreground of a region.
 - 
BACKGROUNDpublic static final ColorType BACKGROUND ColorType for the background of a region.
 - 
TEXT_FOREGROUNDpublic static final ColorType TEXT_FOREGROUND ColorType for the foreground of a region.
 - 
TEXT_BACKGROUNDpublic static final ColorType TEXT_BACKGROUND ColorType for the background of a region.
 - 
FOCUSpublic static final ColorType FOCUS ColorType for the focus.
 - 
MAX_COUNTpublic static final int MAX_COUNT Maximum number ofColorTypes.
 
- 
 - 
Constructor Detail- 
ColorTypeprotected ColorType(String description) Creates a new ColorType with the specified description.- Parameters:
- description- String description of the ColorType.
 
 
- 
 
-