Class DocumentTelemetryParticipant
- java.lang.Object
-
- org.eclipse.lemminx.extensions.contentmodel.participants.DocumentTelemetryParticipant
-
- All Implemented Interfaces:
IDocumentLifecycleParticipant
public class DocumentTelemetryParticipant extends Object implements IDocumentLifecycleParticipant
-
-
Constructor Summary
Constructors Constructor Description DocumentTelemetryParticipant(TelemetryManager telemetryManager, ContentModelManager contentManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddidChange(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.
-
-
-
Constructor Detail
-
DocumentTelemetryParticipant
public DocumentTelemetryParticipant(TelemetryManager telemetryManager, ContentModelManager contentManager)
-
-
Method Detail
-
didOpen
public void didOpen(DOMDocument document)
Description copied from interface:IDocumentLifecycleParticipantHandler called when an XML document is opened.- Specified by:
didOpenin interfaceIDocumentLifecycleParticipant- Parameters:
document- the DOM document
-
didChange
public void didChange(DOMDocument document)
Description copied from interface:IDocumentLifecycleParticipantHandler called when an XML document is changed.- Specified by:
didChangein interfaceIDocumentLifecycleParticipant- Parameters:
document- the DOM document
-
didSave
public void didSave(DOMDocument document)
Description copied from interface:IDocumentLifecycleParticipantHandler called when an XML document is saved.- Specified by:
didSavein interfaceIDocumentLifecycleParticipant- Parameters:
document- the DOM document
-
didClose
public void didClose(DOMDocument document)
Description copied from interface:IDocumentLifecycleParticipantHandler called when an XML document is closed.- Specified by:
didClosein interfaceIDocumentLifecycleParticipant- Parameters:
document- the DOM document
-
-