java.lang.Object
java.awt.Color
javax.swing.plaf.ColorUIResource
- All Implemented Interfaces:
- Paint,- Transparency,- Serializable,- UIResource
A subclass of Color that implements UIResource.  UI
 classes that create colors should use this class.
 
 Warning:
 Serialized objects of this class will not be compatible with
 future Swing releases. The current serialization support is
 appropriate for short term storage or RMI between applications running
 the same version of Swing.  As of 1.4, support for long term storage
 of all JavaBeans
 has been added to the java.beans package.
 Please see XMLEncoder.
- See Also:
- 
Field SummaryFields declared in class java.awt.Colorblack, BLACK, blue, BLUE, cyan, CYAN, DARK_GRAY, darkGray, gray, GRAY, green, GREEN, LIGHT_GRAY, lightGray, magenta, MAGENTA, orange, ORANGE, pink, PINK, red, RED, white, WHITE, yellow, YELLOWFields declared in interface java.awt.TransparencyBITMASK, OPAQUE, TRANSLUCENT
- 
Constructor SummaryConstructorsConstructorDescriptionColorUIResource(float r, float g, float b) Constructs aColorUIResource.ColorUIResource(int rgb) Constructs aColorUIResource.ColorUIResource(int r, int g, int b) Constructs aColorUIResource.Constructs aColorUIResource.
- 
Method SummaryMethods declared in class java.awt.Colorbrighter, createContext, darker, decode, equals, getAlpha, getBlue, getColor, getColor, getColor, getColorComponents, getColorComponents, getColorSpace, getComponents, getComponents, getGreen, getHSBColor, getRed, getRGB, getRGBColorComponents, getRGBComponents, getTransparency, hashCode, HSBtoRGB, RGBtoHSB, toString
- 
Constructor Details- 
ColorUIResourceConstructs aColorUIResource.- Parameters:
- r- the red component
- g- the green component
- b- the blue component
 
- 
ColorUIResourcepublic ColorUIResource(int rgb) Constructs aColorUIResource.- Parameters:
- rgb- the combined RGB components
 
- 
ColorUIResourcepublic ColorUIResource(float r, float g, float b) Constructs aColorUIResource.- Parameters:
- r- the red component
- g- the green component
- b- the blue component
 
- 
ColorUIResourceConstructs aColorUIResource.- Parameters:
- c- the color
 
 
-