Package org.eclipse.lsp4j.services
Interface NotebookDocumentService
-
public interface NotebookDocumentService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddidChange(DidChangeNotebookDocumentParams params)The change notification is sent from the client to the server when a notebook document changes.voiddidClose(DidCloseNotebookDocumentParams params)The close notification is sent from the client to the server when a notebook document is closed.voiddidOpen(DidOpenNotebookDocumentParams params)The open notification is sent from the client to the server when a notebook document is opened.voiddidSave(DidSaveNotebookDocumentParams params)The save notification is sent from the client to the server when a notebook document is saved.
-
-
-
Method Detail
-
didOpen
void didOpen(DidOpenNotebookDocumentParams params)
The open notification is sent from the client to the server when a notebook document is opened. It is only sent by a client if the server requested the synchronization modenotebookin itsServerCapabilities.notebookDocumentSynccapability.Registration Options:
NotebookDocumentSyncRegistrationOptionsSince 3.17.0
-
didChange
void didChange(DidChangeNotebookDocumentParams params)
The change notification is sent from the client to the server when a notebook document changes. It is only sent by a client if the server requested the synchronization modenotebookin itsServerCapabilities.notebookDocumentSynccapability.Registration Options:
NotebookDocumentSyncRegistrationOptionsSince 3.17.0
-
didSave
void didSave(DidSaveNotebookDocumentParams params)
The save notification is sent from the client to the server when a notebook document is saved. It is only sent by a client if the server requested the synchronization modenotebookin itsServerCapabilities.notebookDocumentSynccapability.Registration Options:
NotebookDocumentSyncRegistrationOptionsSince 3.17.0
-
didClose
void didClose(DidCloseNotebookDocumentParams params)
The close notification is sent from the client to the server when a notebook document is closed. It is only sent by a client if the server requested the synchronization modenotebookin itsServerCapabilities.notebookDocumentSynccapability.Registration Options:
NotebookDocumentSyncRegistrationOptionsSince 3.17.0
-
-