Package org.eclipse.lsp4j
Class NotebookDocumentChangeEventCells
- java.lang.Object
-
- org.eclipse.lsp4j.NotebookDocumentChangeEventCells
-
public class NotebookDocumentChangeEventCells extends java.lang.ObjectChanges to cellsSince 3.17.0
-
-
Constructor Summary
Constructors Constructor Description NotebookDocumentChangeEventCells()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<NotebookCell>getData()Changes to notebook cells properties like its kind, execution summary or metadata.NotebookDocumentChangeEventCellStructuregetStructure()Changes to the cell structure to add or remove cells.java.util.List<NotebookDocumentChangeEventCellTextContent>getTextContent()Changes to the text content of notebook cells.inthashCode()voidsetData(java.util.List<NotebookCell> data)Changes to notebook cells properties like its kind, execution summary or metadata.voidsetStructure(NotebookDocumentChangeEventCellStructure structure)Changes to the cell structure to add or remove cells.voidsetTextContent(java.util.List<NotebookDocumentChangeEventCellTextContent> textContent)Changes to the text content of notebook cells.java.lang.StringtoString()
-
-
-
Method Detail
-
getStructure
public NotebookDocumentChangeEventCellStructure getStructure()
Changes to the cell structure to add or remove cells.
-
setStructure
public void setStructure(NotebookDocumentChangeEventCellStructure structure)
Changes to the cell structure to add or remove cells.
-
getData
public java.util.List<NotebookCell> getData()
Changes to notebook cells properties like its kind, execution summary or metadata.
-
setData
public void setData(java.util.List<NotebookCell> data)
Changes to notebook cells properties like its kind, execution summary or metadata.
-
getTextContent
public java.util.List<NotebookDocumentChangeEventCellTextContent> getTextContent()
Changes to the text content of notebook cells.
-
setTextContent
public void setTextContent(java.util.List<NotebookDocumentChangeEventCellTextContent> textContent)
Changes to the text content of notebook cells.
-
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
-
-