public class CodeActionParams
extends java.lang.Object
Constructor and Description |
---|
CodeActionParams() |
CodeActionParams(TextDocumentIdentifier textDocument,
Range range,
CodeActionContext context) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
CodeActionContext |
getContext()
Context carrying additional information.
|
Range |
getRange()
The range for which the command was invoked.
|
TextDocumentIdentifier |
getTextDocument()
The document in which the command was invoked.
|
int |
hashCode() |
void |
setContext(CodeActionContext context)
Context carrying additional information.
|
void |
setRange(Range range)
The range for which the command was invoked.
|
void |
setTextDocument(TextDocumentIdentifier textDocument)
The document in which the command was invoked.
|
java.lang.String |
toString() |
public CodeActionParams()
public CodeActionParams(TextDocumentIdentifier textDocument, Range range, CodeActionContext context)
@Pure public TextDocumentIdentifier getTextDocument()
public void setTextDocument(TextDocumentIdentifier textDocument)
@Pure public Range getRange()
public void setRange(Range range)
@Pure public CodeActionContext getContext()
public void setContext(CodeActionContext context)
@Pure public java.lang.String toString()
toString
in class java.lang.Object
@Pure public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
@Pure public int hashCode()
hashCode
in class java.lang.Object