GWT 2.7.0

com.google.gwt.canvas.dom.client
Class CssColor

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by com.google.gwt.canvas.dom.client.FillStrokeStyle
          extended by com.google.gwt.canvas.dom.client.CssColor

public class CssColor
extends FillStrokeStyle

CSS Color object.

To handle dev mode we must wrap JSO strings in an array. Therefore, when in dev mode, CssColor is actually an array with one element that is the JSO. In Production Mode, this is not needed.

See Also:
Cascading Style Sheets, level 1

Field Summary
 
Fields inherited from class com.google.gwt.canvas.dom.client.FillStrokeStyle
TYPE_CSSCOLOR, TYPE_GRADIENT, TYPE_PATTERN
 
Constructor Summary
protected CssColor()
           
 
Method Summary
static CssColor make(int r, int g, int b)
          Sets the RGB color value.
static CssColor make(java.lang.String cssColor)
          Creates a CssColor object.
 java.lang.String value()
          Returns the value of the CssColor, as a String.
 
Methods inherited from class com.google.gwt.canvas.dom.client.FillStrokeStyle
getType
 
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createArray, createFunction, createObject, equals, hashCode, toSource, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CssColor

protected CssColor()
Method Detail

make

public static final CssColor make(int r,
                                  int g,
                                  int b)
Sets the RGB color value.

Parameters:
r - red, integer between 0 and 255
g - green, integer between 0 and 255
b - blue, integer between 0 and 255
Returns:
a CssColor object

make

public static final CssColor make(java.lang.String cssColor)
Creates a CssColor object. Examples: blue, #ff0000, #f00, rgb(255,0,0)

Parameters:
cssColor - the CSS color
Returns:
a CssColor object

value

public final java.lang.String value()
Returns the value of the CssColor, as a String.

Returns:
the value of the color, as a String.

GWT 2.7.0