Interface IDocumentLifecycleParticipant

All Known Implementing Classes:
DocumentTelemetryParticipant

public interface IDocumentLifecycleParticipant
Document LifecycleService participant API.
Since:
0.18.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Handler called when an XML document is changed.
    void
    Handler called when an XML document is closed.
    void
    didOpen(DOMDocument document)
    Handler called when an XML document is opened.
    void
    didSave(DOMDocument document)
    Handler called when an XML document is saved.
  • Method Details

    • didOpen

      void didOpen(DOMDocument document)
      Handler called when an XML document is opened.
      Parameters:
      document - the DOM document
    • didChange

      void didChange(DOMDocument document)
      Handler called when an XML document is changed.
      Parameters:
      document - the DOM document
    • didSave

      void didSave(DOMDocument document)
      Handler called when an XML document is saved.
      Parameters:
      document - the DOM document
    • didClose

      void didClose(DOMDocument document)
      Handler called when an XML document is closed.
      Parameters:
      document - the DOM document