Package org.eclipse.lsp4j
Class DidOpenNotebookDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidOpenNotebookDocumentParams
-
public class DidOpenNotebookDocumentParams extends java.lang.ObjectThe 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 booleanequals(java.lang.Object obj)java.util.List<TextDocumentItem>getCellTextDocuments()The text documents that represent the content of a notebook cell.NotebookDocumentgetNotebookDocument()The notebook document that got opened.inthashCode()voidsetCellTextDocuments(java.util.List<TextDocumentItem> cellTextDocuments)The text documents that represent the content of a notebook cell.voidsetNotebookDocument(NotebookDocument notebookDocument)The notebook document that got opened.java.lang.StringtoString()
-
-
-
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:
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
-
-