Package org.eclipse.lsp4j
Class DidCloseNotebookDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidCloseNotebookDocumentParams
-
public class DidCloseNotebookDocumentParams extends java.lang.ObjectThe 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 booleanequals(java.lang.Object obj)java.util.List<TextDocumentIdentifier>getCellTextDocuments()The text documents that represent the content of a notebook cell that got closed.NotebookDocumentIdentifiergetNotebookDocument()The notebook document that got closed.inthashCode()voidsetCellTextDocuments(java.util.List<TextDocumentIdentifier> cellTextDocuments)The text documents that represent the content of a notebook cell that got closed.voidsetNotebookDocument(NotebookDocumentIdentifier notebookDocument)The notebook document that got closed.java.lang.StringtoString()
-
-
-
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:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-