com.jniwrapper.win32.gdi.bitmap
Class ARGB

java.lang.Object
  extended by com.jniwrapper.win32.gdi.bitmap.ARGB

public class ARGB
extends java.lang.Object

Represents Java ARGB color used in BufferedImage.getRGB().


Constructor Summary
ARGB(int argb)
           
ARGB(int alpha, int red, int green, int blue)
           
 
Method Summary
 int getAlpha()
           
 int getBlue()
           
 int getGreen()
           
 int getRed()
           
 int getValue()
           
 void setAlpha(int val)
           
 void setBlue(int val)
           
 void setGreen(int val)
           
 void setRed(int val)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ARGB

public ARGB(int argb)

ARGB

public ARGB(int alpha,
            int red,
            int green,
            int blue)
Method Detail

getAlpha

public int getAlpha()

getRed

public int getRed()

getGreen

public int getGreen()

getBlue

public int getBlue()

setAlpha

public void setAlpha(int val)

setRed

public void setRed(int val)

setGreen

public void setGreen(int val)

setBlue

public void setBlue(int val)

getValue

public int getValue()