Package org.eclipse.lemminx.client
Class CodeLensKindCapabilities
- java.lang.Object
-
- org.eclipse.lemminx.client.CodeLensKindCapabilities
-
public class CodeLensKindCapabilities extends Object
Specific capabilities for the `CodeLensKind`.
-
-
Constructor Summary
Constructors Constructor Description CodeLensKindCapabilities()CodeLensKindCapabilities(List<String> valueSet)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)List<String>getValueSet()The codeLens kind values the client supports.inthashCode()voidsetValueSet(List<String> valueSet)The codeLens kind values the client supports.StringtoString()
-
-
-
Method Detail
-
getValueSet
public List<String> getValueSet()
The codeLens kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown. If this property is not present the client only supports the codeLens kinds from `File` to `Array` as defined in the initial version of the protocol.
-
setValueSet
public void setValueSet(List<String> valueSet)
The codeLens kind values the client supports. When this property exists the client also guarantees that it will handle values outside its set gracefully and falls back to a default value when unknown. If this property is not present the client only supports the codeLens kinds from `File` to `Array` as defined in the initial version of the protocol.
-
-