Package org.eclipse.lsp4j
Class DidCloseNotebookDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidCloseNotebookDocumentParams
-
public class DidCloseNotebookDocumentParams extends java.lang.Object
The params sent in a close notebook document notification.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description DidCloseNotebookDocumentParams()
DidCloseNotebookDocumentParams(NotebookDocumentIdentifier notebookDocument, java.util.List<TextDocumentIdentifier> cellTextDocuments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.List<TextDocumentIdentifier>
getCellTextDocuments()
The text documents that represent the content of a notebook cell that got closed.NotebookDocumentIdentifier
getNotebookDocument()
The notebook document that got closed.int
hashCode()
void
setCellTextDocuments(java.util.List<TextDocumentIdentifier> cellTextDocuments)
The text documents that represent the content of a notebook cell that got closed.void
setNotebookDocument(NotebookDocumentIdentifier notebookDocument)
The notebook document that got closed.java.lang.String
toString()
-
-
-
Constructor Detail
-
DidCloseNotebookDocumentParams
public DidCloseNotebookDocumentParams()
-
DidCloseNotebookDocumentParams
public DidCloseNotebookDocumentParams(NotebookDocumentIdentifier notebookDocument, java.util.List<TextDocumentIdentifier> cellTextDocuments)
-
-
Method Detail
-
getNotebookDocument
public NotebookDocumentIdentifier getNotebookDocument()
The notebook document that got closed.
-
setNotebookDocument
public void setNotebookDocument(NotebookDocumentIdentifier notebookDocument)
The notebook document that got closed.
-
getCellTextDocuments
public java.util.List<TextDocumentIdentifier> getCellTextDocuments()
The text documents that represent the content of a notebook cell that got closed.
-
setCellTextDocuments
public void setCellTextDocuments(java.util.List<TextDocumentIdentifier> cellTextDocuments)
The text documents that represent the content of a notebook cell that got closed.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-