public class DidChangeNotebookDocumentParams
extends java.lang.Object
Since 3.17.0
| Constructor and Description |
|---|
DidChangeNotebookDocumentParams() |
DidChangeNotebookDocumentParams(VersionedNotebookDocumentIdentifier notebookDocument,
NotebookDocumentChangeEvent change) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
NotebookDocumentChangeEvent |
getChange()
The actual changes to the notebook document.
|
VersionedNotebookDocumentIdentifier |
getNotebookDocument()
The notebook document that did change.
|
int |
hashCode() |
void |
setChange(NotebookDocumentChangeEvent change)
The actual changes to the notebook document.
|
void |
setNotebookDocument(VersionedNotebookDocumentIdentifier notebookDocument)
The notebook document that did change.
|
java.lang.String |
toString() |
public DidChangeNotebookDocumentParams()
public DidChangeNotebookDocumentParams(VersionedNotebookDocumentIdentifier notebookDocument, NotebookDocumentChangeEvent change)
@Pure public VersionedNotebookDocumentIdentifier getNotebookDocument()
public void setNotebookDocument(VersionedNotebookDocumentIdentifier notebookDocument)
@Pure public NotebookDocumentChangeEvent getChange()
The change describes single state change to the notebook document. So it moves a notebook document, its cells and its cell text document contents from state S to S'.
To mirror the content of a notebook using change events use the following approach:
public void setChange(NotebookDocumentChangeEvent change)
The change describes single state change to the notebook document. So it moves a notebook document, its cells and its cell text document contents from state S to S'.
To mirror the content of a notebook using change events use the following approach:
@Pure public java.lang.String toString()
toString in class java.lang.Object@Pure public boolean equals(java.lang.Object obj)
equals in class java.lang.Object@Pure public int hashCode()
hashCode in class java.lang.Object