Package kiyut.sketsa.loaders.event
Class SVGEditorSupportListenerAdapter
- java.lang.Object
-
- kiyut.sketsa.loaders.event.SVGEditorSupportListenerAdapter
-
- All Implemented Interfaces:
EventListener,SVGEditorSupportListener
public class SVGEditorSupportListenerAdapter extends Object implements SVGEditorSupportListener
Just convenience adapater class. All methods are do nothing- Author:
- KIYUT
-
-
Constructor Summary
Constructors Constructor Description SVGEditorSupportListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddocumentClosed(SVGEditorSupportEvent evt)fired after document is successfully closedvoiddocumentCreated(SVGEditorSupportEvent evt)fired after document is successfully created aka new document but before opened in the editor.voiddocumentLoaded(SVGEditorSupportEvent evt)fired after document is successfully loaded but before opened in the editor.voiddocumentOpened(SVGEditorSupportEvent evt)fired after document is successfully opened in the editor.voiddocumentReplaced(SVGEditorSupportEvent evt)fired after document is successfully replacedvoiddocumentReverted(SVGEditorSupportEvent evt)fired after document is successfully reverted.voiddocumentSaved(SVGEditorSupportEvent evt)fired after document is successfully saved
-
-
-
Method Detail
-
documentCreated
public void documentCreated(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully created aka new document but before opened in the editor. note: documentOpened will be called later during opening process.- Specified by:
documentCreatedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentLoaded
public void documentLoaded(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully loaded but before opened in the editor. It is called regardless it is reverting process or normal loading- Specified by:
documentLoadedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentReverted
public void documentReverted(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully reverted. note: documentLoaded and documentOpened is still be called.- Specified by:
documentRevertedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentOpened
public void documentOpened(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully opened in the editor. It is called regardless it is reverting process or normal loading or new document- Specified by:
documentOpenedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentSaved
public void documentSaved(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully saved- Specified by:
documentSavedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentClosed
public void documentClosed(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully closed- Specified by:
documentClosedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
documentReplaced
public void documentReplaced(SVGEditorSupportEvent evt)
Description copied from interface:SVGEditorSupportListenerfired after document is successfully replaced- Specified by:
documentReplacedin interfaceSVGEditorSupportListener- Parameters:
evt- SVGEditorSupportEvent
-
-