Interface IDocumentLifecycleParticipant
- All Known Implementing Classes:
DocumentTelemetryParticipant
public interface IDocumentLifecycleParticipant
Document LifecycleService participant API.
- Since:
- 0.18.0
-
Method Summary
Modifier and TypeMethodDescriptionvoiddidChange(DOMDocument document) Handler called when an XML document is changed.voiddidClose(DOMDocument document) Handler called when an XML document is closed.voiddidOpen(DOMDocument document) Handler called when an XML document is opened.voiddidSave(DOMDocument document) Handler called when an XML document is saved.
-
Method Details
-
didOpen
Handler called when an XML document is opened.- Parameters:
document- the DOM document
-
didChange
Handler called when an XML document is changed.- Parameters:
document- the DOM document
-
didSave
Handler called when an XML document is saved.- Parameters:
document- the DOM document
-
didClose
Handler called when an XML document is closed.- Parameters:
document- the DOM document
-