Package org.eclipse.lsp4j
Class NotebookDocumentChangeEventCellStructure
- java.lang.Object
-
- org.eclipse.lsp4j.NotebookDocumentChangeEventCellStructure
-
public class NotebookDocumentChangeEventCellStructure extends java.lang.ObjectChanges to the cell structure to add or remove cells.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description NotebookDocumentChangeEventCellStructure()NotebookDocumentChangeEventCellStructure(NotebookCellArrayChange array)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)NotebookCellArrayChangegetArray()The change to the cell array.java.util.List<TextDocumentIdentifier>getDidClose()Additional closed cell text documents.java.util.List<TextDocumentItem>getDidOpen()Additional opened cell text documents.inthashCode()voidsetArray(NotebookCellArrayChange array)The change to the cell array.voidsetDidClose(java.util.List<TextDocumentIdentifier> didClose)Additional closed cell text documents.voidsetDidOpen(java.util.List<TextDocumentItem> didOpen)Additional opened cell text documents.java.lang.StringtoString()
-
-
-
Constructor Detail
-
NotebookDocumentChangeEventCellStructure
public NotebookDocumentChangeEventCellStructure()
-
NotebookDocumentChangeEventCellStructure
public NotebookDocumentChangeEventCellStructure(NotebookCellArrayChange array)
-
-
Method Detail
-
getArray
public NotebookCellArrayChange getArray()
The change to the cell array.
-
setArray
public void setArray(NotebookCellArrayChange array)
The change to the cell array.
-
getDidOpen
public java.util.List<TextDocumentItem> getDidOpen()
Additional opened cell text documents.
-
setDidOpen
public void setDidOpen(java.util.List<TextDocumentItem> didOpen)
Additional opened cell text documents.
-
getDidClose
public java.util.List<TextDocumentIdentifier> getDidClose()
Additional closed cell text documents.
-
setDidClose
public void setDidClose(java.util.List<TextDocumentIdentifier> didClose)
Additional closed cell text documents.
-
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
-
-