| javax.media.jai.CachedTile
All known Subclasses: com.sun.media.jai.util.SunCachedTile,
CachedTile | public interface CachedTile (Code) | | Public interface for cached tiles used to
retrieve information about the tile.
since: JAI 1.1 |
Method Summary | |
int | getAction() Returns information about which method
triggered a notification event. | RenderedImage | getOwner() Returns the image operation to which this
cached tile belongs. | Raster | getTile() Returns the cached tile. | Object | getTileCacheMetric() Returns a cost metric associated with the tile. | long | getTileSize() | long | getTileTimeStamp() Returns the time stamp of the cached tile. |
getAction | int getAction()(Code) | | Returns information about which method
triggered a notification event. In the
Sun Microsystems implementation, events
include add, remove and update tile
information.
|
getOwner | RenderedImage getOwner()(Code) | | Returns the image operation to which this
cached tile belongs. In Sun Microsystems
implementation, this is a RenderedImage.
|
getTile | Raster getTile()(Code) | | Returns the cached tile. In Sun Microsystems
implementation, this object is a Raster.
|
getTileCacheMetric | Object getTileCacheMetric()(Code) | | Returns a cost metric associated with the tile.
This value is used to determine which tiles get
removed from the cache.
|
getTileSize | long getTileSize()(Code) | | Returns the memory size of the cached tile
|
getTileTimeStamp | long getTileTimeStamp()(Code) | | Returns the time stamp of the cached tile.
|
|
|