VNCj

gnu.rfb
Class Raw

java.lang.Object
  |
  +--gnu.rfb.Rect
        |
        +--gnu.rfb.Raw
All Implemented Interfaces:
Cloneable

public class Raw
extends Rect

Raw encoding.


Field Summary
 byte[] bytes
           
 PixelFormat pixelFormat
           
 
Fields inherited from class gnu.rfb.Rect
count, h, w, x, y
 
Constructor Summary
Raw(int[] pixels, PixelFormat pixelFormat, int offsetX, int offsetY, int scanline, int x, int y, int w, int h)
           
Raw(int x, int y, int w, int h, PixelFormat pixelFormat, byte[] bytes)
           
 
Method Summary
 Object clone()
           
 void writeData(DataOutput output)
           
 
Methods inherited from class gnu.rfb.Rect
bestEncoding, copyPixels, encode, encode, encode, getBackground, toString, transform, writePixel
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

pixelFormat

public PixelFormat pixelFormat

bytes

public byte[] bytes
Constructor Detail

Raw

public Raw(int[] pixels,
           PixelFormat pixelFormat,
           int offsetX,
           int offsetY,
           int scanline,
           int x,
           int y,
           int w,
           int h)

Raw

public Raw(int x,
           int y,
           int w,
           int h,
           PixelFormat pixelFormat,
           byte[] bytes)
Method Detail

writeData

public void writeData(DataOutput output)
               throws IOException
Overrides:
writeData in class Rect
IOException

clone

public Object clone()
             throws CloneNotSupportedException
Overrides:
clone in class Rect
CloneNotSupportedException

VNCj