Class GotoArguments

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

public class GotoArguments extends JSONBase
Arguments for 'goto' request.
  • Method Details

    • getThreadId

      public int getThreadId()
      Set the goto target for this thread.
    • setThreadId

      public GotoArguments setThreadId(int threadId)
    • getTargetId

      public int getTargetId()
      The location where the debuggee will continue to run.
    • setTargetId

      public GotoArguments setTargetId(int targetId)
    • equals

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

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

      public static GotoArguments create(Integer threadId, Integer targetId)