Package org.eclipse.lsp4j
Class DidOpenNotebookDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidOpenNotebookDocumentParams
-
public class DidOpenNotebookDocumentParams extends java.lang.Object
The params sent in an open notebook document notification.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description DidOpenNotebookDocumentParams()
DidOpenNotebookDocumentParams(NotebookDocument notebookDocument, java.util.List<TextDocumentItem> cellTextDocuments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.List<TextDocumentItem>
getCellTextDocuments()
The text documents that represent the content of a notebook cell.NotebookDocument
getNotebookDocument()
The notebook document that got opened.int
hashCode()
void
setCellTextDocuments(java.util.List<TextDocumentItem> cellTextDocuments)
The text documents that represent the content of a notebook cell.void
setNotebookDocument(NotebookDocument notebookDocument)
The notebook document that got opened.java.lang.String
toString()
-
-
-
Constructor Detail
-
DidOpenNotebookDocumentParams
public DidOpenNotebookDocumentParams()
-
DidOpenNotebookDocumentParams
public DidOpenNotebookDocumentParams(NotebookDocument notebookDocument, java.util.List<TextDocumentItem> cellTextDocuments)
-
-
Method Detail
-
getNotebookDocument
public NotebookDocument getNotebookDocument()
The notebook document that got opened.
-
setNotebookDocument
public void setNotebookDocument(NotebookDocument notebookDocument)
The notebook document that got opened.
-
getCellTextDocuments
public java.util.List<TextDocumentItem> getCellTextDocuments()
The text documents that represent the content of a notebook cell.
-
setCellTextDocuments
public void setCellTextDocuments(java.util.List<TextDocumentItem> cellTextDocuments)
The text documents that represent the content of a notebook cell.
-
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
-
-