Interface TileRable
-
- All Superinterfaces:
Filter,FilterColorInterpolation,java.awt.image.renderable.RenderableImage
- All Known Implementing Classes:
TileRable8Bit
public interface TileRable extends FilterColorInterpolation
A renderable that can tile its source into the tile region.- Version:
- $Id: TileRable.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FiltergetSource()Return's the tile source (the tile content used to fill the tile region.java.awt.geom.Rectangle2DgetTiledRegion()Returns the tiled regionjava.awt.geom.Rectangle2DgetTileRegion()Returns the tile regionbooleanisOverflow()Returns whether or not the source can overflow the tile region or if the tile region should clip the sourcevoidsetOverflow(boolean overflow)Sets the overflow strategyvoidsetSource(Filter source)Sets the filter source (the tile content used to fill the tile region.voidsetTiledRegion(java.awt.geom.Rectangle2D tiledRegion)Sets the tile regionvoidsetTileRegion(java.awt.geom.Rectangle2D tileRegion)Sets the tile region-
Methods inherited from interface org.apache.batik.ext.awt.image.renderable.Filter
getBounds2D, getDependencyRegion, getDirtyRegion, getTimeStamp
-
Methods inherited from interface org.apache.batik.ext.awt.image.renderable.FilterColorInterpolation
getOperationColorSpace, isColorSpaceLinear, setColorSpaceLinear
-
-
-
-
Method Detail
-
getTileRegion
java.awt.geom.Rectangle2D getTileRegion()
Returns the tile region
-
setTileRegion
void setTileRegion(java.awt.geom.Rectangle2D tileRegion)
Sets the tile region
-
getTiledRegion
java.awt.geom.Rectangle2D getTiledRegion()
Returns the tiled region
-
setTiledRegion
void setTiledRegion(java.awt.geom.Rectangle2D tiledRegion)
Sets the tile region
-
isOverflow
boolean isOverflow()
Returns whether or not the source can overflow the tile region or if the tile region should clip the source
-
setOverflow
void setOverflow(boolean overflow)
Sets the overflow strategy
-
setSource
void setSource(Filter source)
Sets the filter source (the tile content used to fill the tile region.
-
getSource
Filter getSource()
Return's the tile source (the tile content used to fill the tile region.
-
-