Package org.apache.batik.swing.svg
Class SVGDocumentLoaderAdapter
- java.lang.Object
-
- org.apache.batik.swing.svg.SVGDocumentLoaderAdapter
-
- All Implemented Interfaces:
SVGDocumentLoaderListener
- Direct Known Subclasses:
JSVGCanvasHandler.LoadListener,JSVGScrollPane.SVGScrollDocumentLoaderListener,ThumbnailDialog.ThumbnailDocumentListener
public abstract class SVGDocumentLoaderAdapter extends java.lang.Object implements SVGDocumentLoaderListener
An adapter class that represents a listener to theSVGDocumentLoaderEventevents.- Version:
- $Id: SVGDocumentLoaderAdapter.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Constructor Summary
Constructors Constructor Description SVGDocumentLoaderAdapter()
-
Method Summary
All Methods Instance Methods Concrete 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
public void documentLoadingStarted(SVGDocumentLoaderEvent e)
Called when the loading of a document was started.- Specified by:
documentLoadingStartedin interfaceSVGDocumentLoaderListener
-
documentLoadingCompleted
public void documentLoadingCompleted(SVGDocumentLoaderEvent e)
Called when the loading of a document was completed.- Specified by:
documentLoadingCompletedin interfaceSVGDocumentLoaderListener
-
documentLoadingCancelled
public void documentLoadingCancelled(SVGDocumentLoaderEvent e)
Called when the loading of a document was cancelled.- Specified by:
documentLoadingCancelledin interfaceSVGDocumentLoaderListener
-
documentLoadingFailed
public void documentLoadingFailed(SVGDocumentLoaderEvent e)
Called when the loading of a document has failed.- Specified by:
documentLoadingFailedin interfaceSVGDocumentLoaderListener
-
-