Package org.eclipse.lsp4j
Class SemanticTokensDeltaParams
- java.lang.Object
-
- org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
-
- org.eclipse.lsp4j.SemanticTokensDeltaParams
-
- All Implemented Interfaces:
PartialResultParams,WorkDoneProgressParams
public class SemanticTokensDeltaParams extends WorkDoneProgressAndPartialResultParams
The request is sent from the client to the server to resolve semantic token deltas for a given whole file.Since 3.16.0
-
-
Constructor Summary
Constructors Constructor Description SemanticTokensDeltaParams()SemanticTokensDeltaParams(TextDocumentIdentifier textDocument, java.lang.String previousResultId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetPreviousResultId()The result id of a previous response.TextDocumentIdentifiergetTextDocument()The text document.inthashCode()voidsetPreviousResultId(java.lang.String previousResultId)The result id of a previous response.voidsetTextDocument(TextDocumentIdentifier textDocument)The text document.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
getPartialResultToken, getWorkDoneToken, setPartialResultToken, setPartialResultToken, setPartialResultToken, setWorkDoneToken, setWorkDoneToken, setWorkDoneToken
-
-
-
-
Constructor Detail
-
SemanticTokensDeltaParams
public SemanticTokensDeltaParams()
-
SemanticTokensDeltaParams
public SemanticTokensDeltaParams(TextDocumentIdentifier textDocument, java.lang.String previousResultId)
-
-
Method Detail
-
getTextDocument
public TextDocumentIdentifier getTextDocument()
The text document.
-
setTextDocument
public void setTextDocument(TextDocumentIdentifier textDocument)
The text document.
-
getPreviousResultId
public java.lang.String getPreviousResultId()
The result id of a previous response. The result Id can either point to a full response or a delta response depending on what was received last.
-
setPreviousResultId
public void setPreviousResultId(java.lang.String previousResultId)
The result id of a previous response. The result Id can either point to a full response or a delta response depending on what was received last.
-
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
-
-