Class StepInTarget

java.lang.Object
com.oracle.truffle.tools.dap.types.JSONBase
com.oracle.truffle.tools.dap.types.StepInTarget

public class StepInTarget extends JSONBase
A StepInTarget can be used in the 'stepIn' request and determines into which single target the stepIn request should step.
  • Method Details

    • getId

      public int getId()
      Unique identifier for a stepIn target.
    • setId

      public StepInTarget setId(int id)
    • getLabel

      public String getLabel()
      The name of the stepIn target (shown in the UI).
    • setLabel

      public StepInTarget setLabel(String label)
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static StepInTarget create(Integer id, String label)