Package org.geotools.tile
Interface TileStateChangedListener
public interface TileStateChangedListener
A listener for tile state change events.
See net.refractions.uidg.project.render.Tile. Taken from uDig.
- Since:
- 12.0
- Author:
- Emily Gouge (Refractions Research)
-
Method Summary
Modifier and TypeMethodDescriptionvoidcontextStateChanged(Tile tile) Called when the context state of a tile has changed.voidrenderStateChanged(Tile tile) Called when the render state of a tile has changed.voidscreenStateChanged(Tile tile) Called when the screen state of a tile has changed.voidvalidationStateChanged(Tile tile) Called when the validation state of a tile has changed.
-
Method Details
-
screenStateChanged
Called when the screen state of a tile has changed. -
renderStateChanged
Called when the render state of a tile has changed. -
contextStateChanged
Called when the context state of a tile has changed. -
validationStateChanged
Called when the validation state of a tile has changed.
-