Package org.eclipse.lsp4j
Class TextDocumentChangeRegistrationOptions
- java.lang.Object
-
- org.eclipse.lsp4j.TextDocumentRegistrationOptions
-
- org.eclipse.lsp4j.TextDocumentChangeRegistrationOptions
-
public class TextDocumentChangeRegistrationOptions extends TextDocumentRegistrationOptions
Describe options to be used when registered for text document change events.
-
-
Constructor Summary
Constructors Constructor Description TextDocumentChangeRegistrationOptions()TextDocumentChangeRegistrationOptions(TextDocumentSyncKind syncKind)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)TextDocumentSyncKindgetSyncKind()How documents are synced to the server.inthashCode()voidsetSyncKind(TextDocumentSyncKind syncKind)How documents are synced to the server.java.lang.StringtoString()-
Methods inherited from class org.eclipse.lsp4j.TextDocumentRegistrationOptions
getDocumentSelector, setDocumentSelector
-
-
-
-
Constructor Detail
-
TextDocumentChangeRegistrationOptions
public TextDocumentChangeRegistrationOptions()
-
TextDocumentChangeRegistrationOptions
public TextDocumentChangeRegistrationOptions(TextDocumentSyncKind syncKind)
-
-
Method Detail
-
getSyncKind
public TextDocumentSyncKind getSyncKind()
How documents are synced to the server.
-
setSyncKind
public void setSyncKind(TextDocumentSyncKind syncKind)
How documents are synced to the server.
-
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
-
-