xl.format
Class RGB

System.Object
  extended byxl.format.RGB

public sealed class RGB
extends System.Object

A structure which contains the RGB values for a particular color


Constructor Summary
RGB(int r, int g, int b)
          Constructor
 
Method Summary
 int getBlue()
          Accessor for the blue component
 int getGreen()
          Accessor for the green component
 int getRed()
          Accessor for the red component
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RGB

public RGB(int r,
           int g,
           int b)
Constructor

Parameters:
r - the red component
g - the green component
b - the blue component
Method Detail

getRed

public int getRed()
Accessor for the red component

Returns:
the red component of the color, between 0 and 255

getGreen

public int getGreen()
Accessor for the green component

Returns:
the green component of the color, between 0 and 255

getBlue

public int getBlue()
Accessor for the blue component

Returns:
the blue component of the color, between 0 and 255