Package ca.cgjennings.apps.arkham
Class EditorAdapter
- java.lang.Object
-
- ca.cgjennings.apps.arkham.EditorAdapter
-
- All Implemented Interfaces:
StrangeEonsEditor.EditorListener
,java.util.EventListener
public class EditorAdapter extends java.lang.Object implements StrangeEonsEditor.EditorListener
Provides empty implementations for all methods inStrangeEonsEditor.EditorListener
.- Author:
- Chris Jennings
-
-
Constructor Summary
Constructors Constructor Description EditorAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
editorAttached(StrangeEonsEditor editor)
An editor has been reattached to the application.void
editorClosing(StrangeEonsEditor editor)
An editor is about to close and will be removed from the application.void
editorDeselected(StrangeEonsEditor editor)
An editor is no longer the selected editor.void
editorDetached(StrangeEonsEditor editor)
An editor has been detached from the application.void
editorSelected(StrangeEonsEditor editor)
An editor has become the selected editor.
-
-
-
Method Detail
-
editorSelected
public void editorSelected(StrangeEonsEditor editor)
Description copied from interface:StrangeEonsEditor.EditorListener
An editor has become the selected editor.- Specified by:
editorSelected
in interfaceStrangeEonsEditor.EditorListener
- Parameters:
editor
- the editor that was activated
-
editorDeselected
public void editorDeselected(StrangeEonsEditor editor)
Description copied from interface:StrangeEonsEditor.EditorListener
An editor is no longer the selected editor.- Specified by:
editorDeselected
in interfaceStrangeEonsEditor.EditorListener
- Parameters:
editor
- the editor that was deactivated
-
editorClosing
public void editorClosing(StrangeEonsEditor editor)
Description copied from interface:StrangeEonsEditor.EditorListener
An editor is about to close and will be removed from the application.- Specified by:
editorClosing
in interfaceStrangeEonsEditor.EditorListener
- Parameters:
editor
- the editor is closing
-
editorDetached
public void editorDetached(StrangeEonsEditor editor)
Description copied from interface:StrangeEonsEditor.EditorListener
An editor has been detached from the application.- Specified by:
editorDetached
in interfaceStrangeEonsEditor.EditorListener
- Parameters:
editor
- the editor that was detached
-
editorAttached
public void editorAttached(StrangeEonsEditor editor)
Description copied from interface:StrangeEonsEditor.EditorListener
An editor has been reattached to the application.- Specified by:
editorAttached
in interfaceStrangeEonsEditor.EditorListener
- Parameters:
editor
- the editor that was reattached
-
-