Interface StrangeEonsEditor.EditorListener

  • All Superinterfaces:
    java.util.EventListener
    All Known Implementing Classes:
    EditorAdapter
    Enclosing interface:
    StrangeEonsEditor

    public static interface StrangeEonsEditor.EditorListener
    extends java.util.EventListener
    A listener that is called when an editor becomes active, inactive, or is closed.
    • Method Detail

      • editorSelected

        void editorSelected​(StrangeEonsEditor editor)
        An editor has become the selected editor.
        Parameters:
        editor - the editor that was activated
      • editorDeselected

        void editorDeselected​(StrangeEonsEditor editor)
        An editor is no longer the selected editor.
        Parameters:
        editor - the editor that was deactivated
      • editorClosing

        void editorClosing​(StrangeEonsEditor editor)
        An editor is about to close and will be removed from the application.
        Parameters:
        editor - the editor is closing
      • editorDetached

        void editorDetached​(StrangeEonsEditor editor)
        An editor has been detached from the application.
        Parameters:
        editor - the editor that was detached
      • editorAttached

        void editorAttached​(StrangeEonsEditor editor)
        An editor has been reattached to the application.
        Parameters:
        editor - the editor that was reattached