Package org.gvsig.fmap.mapcontext.layers
Interface LayerDrawingListener
public interface LayerDrawingListener
LayerDrawingListener defines listeners
to catch and handle drawing events from layers.
-
Method Summary
Modifier and TypeMethodDescriptionvoidProcess to execute after a layer had been drawn.voidProcess to execute after aGraphicLayerhad been drawn.voidProcess to execute before aGraphicLayerhad been drawn.void
-
Method Details
-
beforeLayerDraw
- Parameters:
e- a layer event object- Throws:
CancelationException- if cancels the operation, this exception will have the message that user will see.- See Also:
-
afterLayerDraw
Process to execute after a layer had been drawn.
- Parameters:
e- a layer event object- Throws:
CancelationException- if cancels the operation, this exception will have the message that user will see.- See Also:
-
beforeGraphicLayerDraw
Process to execute before a
GraphicLayerhad been drawn.- Parameters:
e- a layer event object- Throws:
CancelationException- if cancels the operation, this exception will have the message that user will see.- See Also:
-
afterLayerGraphicDraw
Process to execute after a
GraphicLayerhad been drawn.- Parameters:
e- a layer event object- Throws:
CancelationException- if cancels the operation, this exception will have the message that user will see.- See Also:
-