Package org.eclipse.lsp4j
Class DidCloseTextDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidCloseTextDocumentParams
-
public class DidCloseTextDocumentParams extends java.lang.Object
The document close notification is sent from the client to the server when the document got closed in the client. The document's truth now exists where the document's uri points to (e.g. if the document's uri is a file uri the truth now exists on disk).
-
-
Constructor Summary
Constructors Constructor Description DidCloseTextDocumentParams()
DidCloseTextDocumentParams(TextDocumentIdentifier textDocument)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
TextDocumentIdentifier
getTextDocument()
The document that was closed.int
hashCode()
void
setTextDocument(TextDocumentIdentifier textDocument)
The document that was closed.java.lang.String
toString()
-
-
-
Constructor Detail
-
DidCloseTextDocumentParams
public DidCloseTextDocumentParams()
-
DidCloseTextDocumentParams
public DidCloseTextDocumentParams(TextDocumentIdentifier textDocument)
-
-
Method Detail
-
getTextDocument
public TextDocumentIdentifier getTextDocument()
The document that was closed.
-
setTextDocument
public void setTextDocument(TextDocumentIdentifier textDocument)
The document that was closed.
-
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
-
-