Package org.eclipse.lsp4j
Class DidCloseTextDocumentParams
- java.lang.Object
-
- org.eclipse.lsp4j.DidCloseTextDocumentParams
-
public class DidCloseTextDocumentParams extends java.lang.ObjectThe 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 booleanequals(java.lang.Object obj)TextDocumentIdentifiergetTextDocument()The document that was closed.inthashCode()voidsetTextDocument(TextDocumentIdentifier textDocument)The document that was closed.java.lang.StringtoString()
-
-
-
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:
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
-
-