Package org.eclipse.lsp4j
Class FoldingRangeRequestParams
- java.lang.Object
-
- org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
-
- org.eclipse.lsp4j.FoldingRangeRequestParams
-
- All Implemented Interfaces:
PartialResultParams
,WorkDoneProgressParams
public class FoldingRangeRequestParams extends WorkDoneProgressAndPartialResultParams
The folding range request is sent from the client to the server to return all folding ranges found in a given text document.Since 3.10.0
-
-
Constructor Summary
Constructors Constructor Description FoldingRangeRequestParams()
FoldingRangeRequestParams(TextDocumentIdentifier textDocument)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
TextDocumentIdentifier
getTextDocument()
The text document.int
hashCode()
void
setTextDocument(TextDocumentIdentifier textDocument)
The text document.java.lang.String
toString()
-
Methods inherited from class org.eclipse.lsp4j.WorkDoneProgressAndPartialResultParams
getPartialResultToken, getWorkDoneToken, setPartialResultToken, setPartialResultToken, setPartialResultToken, setWorkDoneToken, setWorkDoneToken, setWorkDoneToken
-
-
-
-
Constructor Detail
-
FoldingRangeRequestParams
public FoldingRangeRequestParams()
-
FoldingRangeRequestParams
public FoldingRangeRequestParams(TextDocumentIdentifier textDocument)
-
-
Method Detail
-
getTextDocument
public TextDocumentIdentifier getTextDocument()
The text document.
-
setTextDocument
public void setTextDocument(TextDocumentIdentifier textDocument)
The text document.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classWorkDoneProgressAndPartialResultParams
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classWorkDoneProgressAndPartialResultParams
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classWorkDoneProgressAndPartialResultParams
-
-