com.esri.sde.sdk.client
Class SeRasterRenderedTile

java.lang.Object
  extended by com.esri.sde.sdk.client.SeRasterRenderedTile
All Implemented Interfaces:
SeRasterConsumer

public class SeRasterRenderedTile
extends java.lang.Object
implements SeRasterConsumer

The SeRasterRenderedTile class implements a SeRasterConsumer which can be attached to SeRasterProducer object to retrieve SeRasterTile objects.

Since:
ArcSDE 9.0
See Also:
SeInsert, SeUpdate, SeRow, SeRasterAttr, SeRasterConsumer, SeRasterProducer

Field Summary
 
Fields inherited from interface com.esri.sde.sdk.client.SeRasterConsumer
COMPLETESCANLINES, COMPLETETILES, IMAGEABORTED, IMAGEERROR, SINGLEFRAMEDONE, STATICIMAGEDONE, TOPDOWNLEFTRIGHT
 
Method Summary
 void rasterComplete(int status)
          The rasterComplete method is part of the SeRasterConsumer API which this class must implement to retrieve the raster data.
 void setHints(int hints)
          The setHints method: No operation.
 void setProperties(java.util.Hashtable props)
          The setProperties method: No operation.
 void setRasterTiles(SeRasterTile[] rasTiles)
          Sets raster image in SeRasterTile form in import_mode.
 void setScanLines(int numLines, byte[] scanLines, byte[] bitMask)
          This is a no operation method.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

setHints

public void setHints(int hints)
The setHints method: No operation.

Specified by:
setHints in interface SeRasterConsumer

setProperties

public void setProperties(java.util.Hashtable props)
The setProperties method: No operation.

Specified by:
setProperties in interface SeRasterConsumer

setScanLines

public void setScanLines(int numLines,
                         byte[] scanLines,
                         byte[] bitMask)
This is a no operation method.

Specified by:
setScanLines in interface SeRasterConsumer
Parameters:
numLines - an int value.
scanLines - a byte[] value.
bitMask - a byte[] value.
See Also:
SeRasterRenderedImage.setScanLines(int, byte[], byte[])

setRasterTiles

public void setRasterTiles(SeRasterTile[] rasTiles)
Sets raster image in SeRasterTile form in import_mode. This is the callback method to get raster data from user. ImportMode: Expect data in SeRasterTile form, in top-down, left-to-right order.

Specified by:
setRasterTiles in interface SeRasterConsumer
Parameters:
rasTiles - a SeRasterTiles[] value.
See Also:
SeRasterAttr.setImportMode(boolean), setRasterTiles(com.esri.sde.sdk.client.SeRasterTile[])

rasterComplete

public void rasterComplete(int status)
The rasterComplete method is part of the SeRasterConsumer API which this class must implement to retrieve the raster data.

Note: This method is intended to be called by the SeRasterProducer of the Image whose scanline are being grabbed.

The valid status values are:

Specified by:
rasterComplete in interface SeRasterConsumer
Parameters:
status - an int value.
See Also:
SeRasterConsumer