Package org.eclipse.lsp4j
Class StaticRegistrationOptions
- java.lang.Object
-
- org.eclipse.lsp4j.TextDocumentRegistrationOptions
-
- org.eclipse.lsp4j.StaticRegistrationOptions
-
public class StaticRegistrationOptions extends TextDocumentRegistrationOptions
Static registration options to be returned in the initialize request.
-
-
Constructor Summary
Constructors Constructor Description StaticRegistrationOptions()StaticRegistrationOptions(java.lang.String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetId()The id used to register the request.inthashCode()voidsetId(java.lang.String id)The id used to register the request.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.TextDocumentRegistrationOptions
getDocumentSelector, setDocumentSelector
-
-
-
-
Method Detail
-
getId
public java.lang.String getId()
The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
-
setId
public void setId(java.lang.String id)
The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classTextDocumentRegistrationOptions
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classTextDocumentRegistrationOptions
-
hashCode
public int hashCode()
- Overrides:
hashCodein classTextDocumentRegistrationOptions
-
-