org.pz.platypus.plugin.pdf
Class RgbColor

java.lang.Object
  extended by org.pz.platypus.plugin.pdf.RgbColor

public class RgbColor
extends java.lang.Object

Color, as specified by three integers, 0-255, that correspond to RGB

Author:
alb

Field Summary
private  int B
           
private  int G
           
private  int R
           
 
Constructor Summary
RgbColor()
          Default color is black: ( 0, 0, 0 )
RgbColor(int r, int g, int b)
           
 
Method Summary
 int getB()
           
 int getG()
           
 int getR()
           
 void setB(int b)
           
 void setG(int g)
           
 void setR(int r)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

R

private int R

G

private int G

B

private int B
Constructor Detail

RgbColor

public RgbColor()
Default color is black: ( 0, 0, 0 )


RgbColor

public RgbColor(int r,
                int g,
                int b)
Method Detail

getR

public int getR()

setR

public void setR(int r)

getG

public int getG()

setG

public void setG(int g)

getB

public int getB()

setB

public void setB(int b)


Copyright © 2008-10 Pacific Data Works LLC