Class SetBreakpointsArguments


  • public class SetBreakpointsArguments
    extends java.lang.Object
    Arguments for 'setBreakpoints' request.
    • Constructor Detail

      • SetBreakpointsArguments

        public SetBreakpointsArguments()
    • Method Detail

      • getSource

        public Source getSource()
        The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.
      • setSource

        public void setSource​(Source source)
        The source location of the breakpoints; either 'source.path' or 'source.sourceReference' must be specified.
      • getBreakpoints

        public SourceBreakpoint[] getBreakpoints()
        The code locations of the breakpoints.

        This is an optional property.

      • setBreakpoints

        public void setBreakpoints​(SourceBreakpoint[] breakpoints)
        The code locations of the breakpoints.

        This is an optional property.

      • getLines

        @Deprecated
        public int[] getLines()
        Deprecated.
        The code locations of the breakpoints.

        This is an optional property.

      • setLines

        @Deprecated
        public void setLines​(int[] lines)
        Deprecated.
        The code locations of the breakpoints.

        This is an optional property.

      • getSourceModified

        public java.lang.Boolean getSourceModified()
        A value of true indicates that the underlying source has been modified which results in new breakpoint locations.

        This is an optional property.

      • setSourceModified

        public void setSourceModified​(java.lang.Boolean sourceModified)
        A value of true indicates that the underlying source has been modified which results in new breakpoint locations.

        This is an optional property.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object