Package org.eclipse.lsp4j.debug
Class StepInTarget
- java.lang.Object
-
- org.eclipse.lsp4j.debug.StepInTarget
-
public class StepInTarget extends java.lang.Object
A StepInTarget can be used in the `stepIn` request and determines into which single target the `stepIn` request should step.
-
-
Constructor Summary
Constructors Constructor Description StepInTarget()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Integer
getColumn()
Start position of the range covered by the step in target.java.lang.Integer
getEndColumn()
End position of the range covered by the step in target.java.lang.Integer
getEndLine()
The end line of the range covered by the step-in target.int
getId()
Unique identifier for a step-in target.java.lang.String
getLabel()
The name of the step-in target (shown in the UI).java.lang.Integer
getLine()
The line of the step-in target.int
hashCode()
void
setColumn(java.lang.Integer column)
Start position of the range covered by the step in target.void
setEndColumn(java.lang.Integer endColumn)
End position of the range covered by the step in target.void
setEndLine(java.lang.Integer endLine)
The end line of the range covered by the step-in target.void
setId(int id)
Unique identifier for a step-in target.void
setLabel(java.lang.String label)
The name of the step-in target (shown in the UI).void
setLine(java.lang.Integer line)
The line of the step-in target.java.lang.String
toString()
-
-
-
Method Detail
-
getId
public int getId()
Unique identifier for a step-in target.
-
setId
public void setId(int id)
Unique identifier for a step-in target.
-
getLabel
public java.lang.String getLabel()
The name of the step-in target (shown in the UI).
-
setLabel
public void setLabel(java.lang.String label)
The name of the step-in target (shown in the UI).
-
getLine
public java.lang.Integer getLine()
The line of the step-in target.This is an optional property.
Since 1.56
-
setLine
public void setLine(java.lang.Integer line)
The line of the step-in target.This is an optional property.
Since 1.56
-
getColumn
public java.lang.Integer getColumn()
Start position of the range covered by the step in target. It is measured in UTF-16 code units and the client capabilityInitializeRequestArguments.getColumnsStartAt1()
determines whether it is 0- or 1-based.This is an optional property.
Since 1.56
-
setColumn
public void setColumn(java.lang.Integer column)
Start position of the range covered by the step in target. It is measured in UTF-16 code units and the client capabilityInitializeRequestArguments.getColumnsStartAt1()
determines whether it is 0- or 1-based.This is an optional property.
Since 1.56
-
getEndLine
public java.lang.Integer getEndLine()
The end line of the range covered by the step-in target.This is an optional property.
Since 1.56
-
setEndLine
public void setEndLine(java.lang.Integer endLine)
The end line of the range covered by the step-in target.This is an optional property.
Since 1.56
-
getEndColumn
public java.lang.Integer getEndColumn()
End position of the range covered by the step in target. It is measured in UTF-16 code units and the client capabilityInitializeRequestArguments.getColumnsStartAt1()
determines whether it is 0- or 1-based.This is an optional property.
Since 1.56
-
setEndColumn
public void setEndColumn(java.lang.Integer endColumn)
End position of the range covered by the step in target. It is measured in UTF-16 code units and the client capabilityInitializeRequestArguments.getColumnsStartAt1()
determines whether it is 0- or 1-based.This is an optional property.
Since 1.56
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-