public class SetBreakpointsArguments extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static SetBreakpointsArguments |
create(Source source) |
boolean |
equals(Object obj) |
List<SourceBreakpoint> |
getBreakpoints()
The code locations of the breakpoints.
|
List<Integer> |
getLines()
Deprecated: The code locations of the breakpoints.
|
Source |
getSource()
The source location of the breakpoints; either 'source.path' or 'source.reference' must be
specified.
|
Boolean |
getSourceModified()
A value of true indicates that the underlying source has been modified which results in new
breakpoint locations.
|
int |
hashCode() |
SetBreakpointsArguments |
setBreakpoints(List<SourceBreakpoint> breakpoints) |
SetBreakpointsArguments |
setLines(List<Integer> lines) |
SetBreakpointsArguments |
setSource(Source source) |
SetBreakpointsArguments |
setSourceModified(Boolean sourceModified) |
public Source getSource()
public SetBreakpointsArguments setSource(Source source)
public List<SourceBreakpoint> getBreakpoints()
public SetBreakpointsArguments setBreakpoints(List<SourceBreakpoint> breakpoints)
public SetBreakpointsArguments setLines(List<Integer> lines)
public Boolean getSourceModified()
public SetBreakpointsArguments setSourceModified(Boolean sourceModified)
public static SetBreakpointsArguments create(Source source)