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 theSVGDocumentLoaderEvent
events.- 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 void
documentLoadingCancelled(SVGDocumentLoaderEvent e)
Called when the loading of a document was cancelled.void
documentLoadingCompleted(SVGDocumentLoaderEvent e)
Called when the loading of a document was completed.void
documentLoadingFailed(SVGDocumentLoaderEvent e)
Called when the loading of a document has failed.void
documentLoadingStarted(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:
documentLoadingStarted
in interfaceSVGDocumentLoaderListener
-
documentLoadingCompleted
public void documentLoadingCompleted(SVGDocumentLoaderEvent e)
Called when the loading of a document was completed.- Specified by:
documentLoadingCompleted
in interfaceSVGDocumentLoaderListener
-
documentLoadingCancelled
public void documentLoadingCancelled(SVGDocumentLoaderEvent e)
Called when the loading of a document was cancelled.- Specified by:
documentLoadingCancelled
in interfaceSVGDocumentLoaderListener
-
documentLoadingFailed
public void documentLoadingFailed(SVGDocumentLoaderEvent e)
Called when the loading of a document has failed.- Specified by:
documentLoadingFailed
in interfaceSVGDocumentLoaderListener
-
-