Uses of Class
java.awt.Color

Packages that use Color
com.jjt.utbeg   
java.awt   
 

Uses of Color in com.jjt.utbeg
 

Fields in com.jjt.utbeg declared as Color
private  Color BorderPanel.borderColor
           
private  Color SwathViewer.referenceLineColor
           
private  Color SwathViewer.sourceColor
           
private  Color SwathViewer.receiverColor
           
 

Methods in com.jjt.utbeg with parameters of type Color
 void BorderPanel.setBorderColor(Color newBorderColor)
           
 

Constructors in com.jjt.utbeg with parameters of type Color
BorderPanel.BorderPanel(int outerInset, int borderWidth, int innerInset, Color borderColor)
           
 

Uses of Color in java.awt
 

Subclasses of Color in java.awt
 class SystemColor
          A class to encapsulate symbolic colors representing the color of GUI objects on a system.
 

Fields in java.awt declared as Color
(package private)  Color Component.foreground
          The foreground color for this component.
(package private)  Color Component.background
          The background color for this component.
(package private)  Color GradientPaint.color1
           
(package private)  Color GradientPaint.color2
           
static Color Color.white
          The color white.
static Color Color.lightGray
          The color light gray.
static Color Color.gray
          The color gray.
static Color Color.darkGray
          The color dark gray.
static Color Color.black
          The color black.
static Color Color.red
          The color red.
static Color Color.pink
          The color pink.
static Color Color.orange
          The color orange.
static Color Color.yellow
          The color yellow.
static Color Color.green
          The color green.
static Color Color.magenta
          The color magenta.
static Color Color.cyan
          The color cyan.
static Color Color.blue
          The color blue.
 

Methods in java.awt that return Color
 Color Component.getForeground()
          Gets the foreground color of this component.
 Color Component.getBackground()
          Gets the background color of this component.
abstract  Color Graphics.getColor()
          Gets this graphics context's current color.
 Color GradientPaint.getColor1()
          Returns the color C1 anchored by the point P1.
 Color GradientPaint.getColor2()
          Returns the color C2 anchored by the point P2.
 Color Color.brighter()
          Creates a brighter version of this color.
 Color Color.darker()
          Creates a darker version of this color.
static Color Color.decode(String nm)
          Converts a string to an integer and returns the specified opaque color.
static Color Color.getColor(String nm)
          Finds a color in the system properties.
static Color Color.getColor(String nm, Color v)
          Finds a color in the system properties.
static Color Color.getColor(String nm, int v)
          Finds a color in the system properties.
static Color Color.getHSBColor(float h, float s, float b)
          Creates a Color object based on values supplied for the HSB color model.
abstract  Color Graphics2D.getBackground()
          Returns the background color used for clearing a region.
 

Methods in java.awt with parameters of type Color
 void Component.setForeground(Color c)
          Sets the foreground color of this component.
 void Component.setBackground(Color c)
          Sets the background color of this component.
abstract  void Graphics.setColor(Color c)
          Sets this graphics context's current color to the specified color.
abstract  void Graphics.setXORMode(Color c1)
          Sets the paint mode of this graphics context to alternate between this graphics context's current color and the new specified color.
abstract  boolean Graphics.drawImage(Image img, int x, int y, Color bgcolor, java.awt.image.ImageObserver observer)
          Draws as much of the specified image as is currently available.
abstract  boolean Graphics.drawImage(Image img, int x, int y, int width, int height, Color bgcolor, java.awt.image.ImageObserver observer)
          Draws as much of the specified image as has already been scaled to fit inside the specified rectangle.
abstract  boolean Graphics.drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, java.awt.image.ImageObserver observer)
          Draws as much of the specified area of the specified image as is currently available, scaling it on the fly to fit inside the specified area of the destination drawable surface.
static Color Color.getColor(String nm, Color v)
          Finds a color in the system properties.
 void LightweightPeer.setForeground(Color c)
           
 void LightweightPeer.setBackground(Color c)
           
abstract  void Graphics2D.setBackground(Color color)
          Sets the background color for the Graphics2D context.
 

Constructors in java.awt with parameters of type Color
GradientPaint.GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2)
          Constructs a simple acyclic GradientPaint object.
GradientPaint.GradientPaint(java.awt.geom.Point2D pt1, Color color1, java.awt.geom.Point2D pt2, Color color2)
          Constructs a simple acyclic GradientPaint object.
GradientPaint.GradientPaint(float x1, float y1, Color color1, float x2, float y2, Color color2, boolean cyclic)
          Constructs either a cyclic or acyclic GradientPaint object depending on the boolean parameter.
GradientPaint.GradientPaint(java.awt.geom.Point2D pt1, Color color1, java.awt.geom.Point2D pt2, Color color2, boolean cyclic)
          Constructs either a cyclic or acyclic GradientPaint object depending on the boolean parameter.
GradientPaintContext.GradientPaintContext(java.awt.geom.Point2D p1, java.awt.geom.Point2D p2, Color c1, Color c2, boolean cyclic)