Class BreakpointLocation

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

public class BreakpointLocation extends JSONBase
Properties of a breakpoint location returned from the 'breakpointLocations' request.
  • Method Details

    • getLine

      public int getLine()
      Start line of breakpoint location.
    • setLine

      public BreakpointLocation setLine(int line)
    • getColumn

      public Integer getColumn()
      Optional start column of breakpoint location.
    • setColumn

      public BreakpointLocation setColumn(Integer column)
    • getEndLine

      public Integer getEndLine()
      Optional end line of breakpoint location if the location covers a range.
    • setEndLine

      public BreakpointLocation setEndLine(Integer endLine)
    • getEndColumn

      public Integer getEndColumn()
      Optional end column of breakpoint location if the location covers a range.
    • setEndColumn

      public BreakpointLocation setEndColumn(Integer endColumn)
    • equals

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

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

      public static BreakpointLocation create(Integer line)