Package org.apache.batik.swing.svg
Interface SVGDocumentLoaderListener
-
- All Known Implementing Classes:
JSVGCanvas.CanvasSVGListener,JSVGCanvasHandler.LoadListener,JSVGComponent.SVGListener,JSVGScrollPane.SVGScrollDocumentLoaderListener,JSVGViewerFrame,SVGDocumentLoaderAdapter,ThumbnailDialog.ThumbnailDocumentListener
public interface SVGDocumentLoaderListenerThis interface represents a listener to the SVGDocumentLoaderEvent events.- Version:
- $Id: SVGDocumentLoaderListener.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddocumentLoadingCancelled(SVGDocumentLoaderEvent e)Called when the loading of a document was cancelled.voiddocumentLoadingCompleted(SVGDocumentLoaderEvent e)Called when the loading of a document was completed.voiddocumentLoadingFailed(SVGDocumentLoaderEvent e)Called when the loading of a document has failed.voiddocumentLoadingStarted(SVGDocumentLoaderEvent e)Called when the loading of a document was started.
-
-
-
Method Detail
-
documentLoadingStarted
void documentLoadingStarted(SVGDocumentLoaderEvent e)
Called when the loading of a document was started.
-
documentLoadingCompleted
void documentLoadingCompleted(SVGDocumentLoaderEvent e)
Called when the loading of a document was completed.
-
documentLoadingCancelled
void documentLoadingCancelled(SVGDocumentLoaderEvent e)
Called when the loading of a document was cancelled.
-
documentLoadingFailed
void documentLoadingFailed(SVGDocumentLoaderEvent e)
Called when the loading of a document has failed.
-
-