Package org.eclipse.lsp4j
Class InlineValueContext
- java.lang.Object
-
- org.eclipse.lsp4j.InlineValueContext
-
public class InlineValueContext extends java.lang.ObjectAdditional information about the context in which inline values were requested.Since 3.17.0
-
-
Constructor Summary
Constructors Constructor Description InlineValueContext()InlineValueContext(int frameId, Range stoppedLocation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)intgetFrameId()The stack frame (as a DAP Id) where the execution has stopped.RangegetStoppedLocation()The document range where execution has stopped.inthashCode()voidsetFrameId(int frameId)The stack frame (as a DAP Id) where the execution has stopped.voidsetStoppedLocation(Range stoppedLocation)The document range where execution has stopped.java.lang.StringtoString()
-
-
-
Constructor Detail
-
InlineValueContext
public InlineValueContext()
-
InlineValueContext
public InlineValueContext(int frameId, Range stoppedLocation)
-
-
Method Detail
-
getFrameId
public int getFrameId()
The stack frame (as a DAP Id) where the execution has stopped.
-
setFrameId
public void setFrameId(int frameId)
The stack frame (as a DAP Id) where the execution has stopped.
-
getStoppedLocation
public Range getStoppedLocation()
The document range where execution has stopped. Typically the end position of the range denotes the line where the inline values are shown.
-
setStoppedLocation
public void setStoppedLocation(Range stoppedLocation)
The document range where execution has stopped. Typically the end position of the range denotes the line where the inline values are shown.
-
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
-
-