Package org.apache.batik.swing.svg
Interface SVGLoadEventDispatcherListener
-
- All Known Implementing Classes:
JSVGCanvas.CanvasSVGListener,JSVGCanvasHandler.SVGLoadEventListener,JSVGComponent.SVGListener,JSVGViewerFrame,SVGLoadEventDispatcherAdapter
public interface SVGLoadEventDispatcherListenerThis interface represents a listener to the SVGLoadEventDispatcherEvent events.- Version:
- $Id: SVGLoadEventDispatcherListener.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsvgLoadEventDispatchCancelled(SVGLoadEventDispatcherEvent e)Called when a onload event dispatch was cancelled.voidsvgLoadEventDispatchCompleted(SVGLoadEventDispatcherEvent e)Called when a onload event dispatch was completed.voidsvgLoadEventDispatchFailed(SVGLoadEventDispatcherEvent e)Called when a onload event dispatch failed.voidsvgLoadEventDispatchStarted(SVGLoadEventDispatcherEvent e)Called when a onload event dispatch started.
-
-
-
Method Detail
-
svgLoadEventDispatchStarted
void svgLoadEventDispatchStarted(SVGLoadEventDispatcherEvent e)
Called when a onload event dispatch started.
-
svgLoadEventDispatchCompleted
void svgLoadEventDispatchCompleted(SVGLoadEventDispatcherEvent e)
Called when a onload event dispatch was completed.
-
svgLoadEventDispatchCancelled
void svgLoadEventDispatchCancelled(SVGLoadEventDispatcherEvent e)
Called when a onload event dispatch was cancelled.
-
svgLoadEventDispatchFailed
void svgLoadEventDispatchFailed(SVGLoadEventDispatcherEvent e)
Called when a onload event dispatch failed.
-
-