Package Summary  Overview Summary

class:ColorUIResource [NONE]

All Implemented Interfaces:
Paint, Transparency, Serializable, UIResource

public class ColorUIResourceextends Color implements 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:

constructor:ColorUIResource(int,int,int) [NONE]

  • ColorUIResource

    @ConstructorProperties({"red","green","blue"}) public ColorUIResource (int r, int g, int b)
    Constructs a ColorUIResource.
    Parameters:
    r - the red component
    g - the green component
    b - the blue component
  • constructor:ColorUIResource(int) [NONE]

    ColorUIResource

    public ColorUIResource (int rgb)
    Constructs a ColorUIResource.
    Parameters:
    rgb - the combined RGB components

    constructor:ColorUIResource(float,float,float) [NONE]

    ColorUIResource

    public ColorUIResource (float r, float g, float b)
    Constructs a ColorUIResource.
    Parameters:
    r - the red component
    g - the green component
    b - the blue component

    constructor:ColorUIResource(java.awt.Color) [NONE]

    ColorUIResource

    public ColorUIResource (Color c)
    Constructs a ColorUIResource.
    Parameters:
    c - the color

    © 2023 Oracle Corporation and/or its affiliates