Package org.eclipse.lsp4j
Class InlineValueText
- java.lang.Object
-
- org.eclipse.lsp4j.InlineValueText
-
public class InlineValueText extends java.lang.ObjectProvide inline value as text.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description InlineValueText()InlineValueText(Range range, java.lang.String text)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)RangegetRange()The document range for which the inline value applies.java.lang.StringgetText()The text of the inline value.inthashCode()voidsetRange(Range range)The document range for which the inline value applies.voidsetText(java.lang.String text)The text of the inline value.java.lang.StringtoString()
-
-
-
Constructor Detail
-
InlineValueText
public InlineValueText()
-
InlineValueText
public InlineValueText(Range range, java.lang.String text)
-
-
Method Detail
-
getRange
public Range getRange()
The document range for which the inline value applies.
-
setRange
public void setRange(Range range)
The document range for which the inline value applies.
-
getText
public java.lang.String getText()
The text of the inline value.
-
setText
public void setText(java.lang.String text)
The text of the inline value.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-