moka.x
Class Color

java.lang.Object
  extended bymoka.lang.Object
      extended bymoka.x.Color

public final class Color
extends Object

Color class encapsulates colors.

Since:
MDK1.0a

Field Summary
static short BLACK_COLOR
          Draw in black.
static short INVERT_COLOR
          Draw the invert color.
static short SHADE_H_COLOR
          Draw using a horizontal shading pattern.
static short SHADE_NS_COLOR
          Draw using a negative slope diagonal shading pattern.
static short SHADE_PS_COLOR
          Draw using a positive slope diagonal shading pattern.
static short SHADE_V_COLOR
          Draw using a vertical shading pattern.
static short WHITE_COLOR
          Draw in white.
 
Constructor Summary
Color()
           
 
Methods inherited from class moka.lang.Object
equals, finalize, getClassName, toString
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

BLACK_COLOR

public static final short BLACK_COLOR
Draw in black.

See Also:
Constant Field Values

WHITE_COLOR

public static final short WHITE_COLOR
Draw in white.

See Also:
Constant Field Values

INVERT_COLOR

public static final short INVERT_COLOR
Draw the invert color.

See Also:
Constant Field Values

SHADE_V_COLOR

public static final short SHADE_V_COLOR
Draw using a vertical shading pattern.

See Also:
Constant Field Values

SHADE_H_COLOR

public static final short SHADE_H_COLOR
Draw using a horizontal shading pattern.

See Also:
Constant Field Values

SHADE_NS_COLOR

public static final short SHADE_NS_COLOR
Draw using a negative slope diagonal shading pattern.

See Also:
Constant Field Values

SHADE_PS_COLOR

public static final short SHADE_PS_COLOR
Draw using a positive slope diagonal shading pattern.

See Also:
Constant Field Values
Constructor Detail

Color

public Color()