Package org.eclipse.lsp4j
Class DocumentLinkParams
- java.lang.Object
-
- org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
-
- org.eclipse.lsp4j.DocumentLinkParams
-
- All Implemented Interfaces:
PartialResultParams,WorkDoneProgressParams
public class DocumentLinkParams extends WorkDoneProgressAndPartialResultParams
The document links request is sent from the client to the server to request the location of links in a document.
-
-
Constructor Summary
Constructors Constructor Description DocumentLinkParams()DocumentLinkParams(TextDocumentIdentifier textDocument)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)TextDocumentIdentifiergetTextDocument()The document to provide document links for.inthashCode()voidsetTextDocument(TextDocumentIdentifier textDocument)The document to provide document links for.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
getPartialResultToken, getWorkDoneToken, setPartialResultToken, setPartialResultToken, setPartialResultToken, setWorkDoneToken, setWorkDoneToken, setWorkDoneToken
-
-
-
-
Constructor Detail
-
DocumentLinkParams
public DocumentLinkParams()
-
DocumentLinkParams
public DocumentLinkParams(TextDocumentIdentifier textDocument)
-
-
Method Detail
-
getTextDocument
public TextDocumentIdentifier getTextDocument()
The document to provide document links for.
-
setTextDocument
public void setTextDocument(TextDocumentIdentifier textDocument)
The document to provide document links for.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classWorkDoneProgressAndPartialResultParams
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classWorkDoneProgressAndPartialResultParams
-
hashCode
public int hashCode()
- Overrides:
hashCodein classWorkDoneProgressAndPartialResultParams
-
-