Interface AuthorExtensionStateListener

All Superinterfaces:
Extension
All Known Subinterfaces:
UniqueAttributesRecognizer
All Known Implementing Classes:
AuthorExtensionStateAdapter, AuthorExtensionStateListenerDelegator, DefaultUniqueAttributesRecognizer, DITAMapTopicTitlesResolveListener, DITAUniqueAttributesRecognizer, Docbook4UniqueAttributesRecognizer, Docbook5UniqueAttributesRecognizer, DocBookUniqueAttributesRecognizer, TEIP5UniqueAttributesRecognizer, XHTMLUniqueAttributesRecognizer

@API(type=EXTENDABLE, src=PUBLIC) public interface AuthorExtensionStateListener extends Extension
Notified when the Author extension, where the listener is defined, was activated or deactivated in the detection process.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    activated(AuthorAccess authorAccess)
    Method called when the Author extension was activated.
    void
    deactivated(AuthorAccess authorAccess)
    Method called when the Author extension was deactivated.

    Methods inherited from interface ro.sync.ecss.extensions.api.Extension

    getDescription
  • Method Details

    • activated

      void activated(AuthorAccess authorAccess)
      Method called when the Author extension was activated. This event is triggered when the Author extension where this listener is defined was activated in relation with a document opened in Author page. Listeners like AuthorMouseListener or AuthorListener can be added at this point.
      Parameters:
      authorAccess - The AuthorAccess of the Author page where the listener was activated.
    • deactivated

      void deactivated(AuthorAccess authorAccess)
      Method called when the Author extension was deactivated. This event is triggered when another Author extension corresponding to the the current document opened in Author page was activated, the user switches to another editor page or the editor is closed.
      Parameters:
      authorAccess - The AuthorAccess of the Author page where the listener was deactivated.