public class BreakpointLocationsArguments extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static BreakpointLocationsArguments |
create(Source source,
Integer line) |
boolean |
equals(Object obj) |
Integer |
getColumn()
Optional start column of range to search possible breakpoint locations in.
|
Integer |
getEndColumn()
Optional end column of range to search possible breakpoint locations in.
|
Integer |
getEndLine()
Optional end line of range to search possible breakpoint locations in.
|
int |
getLine()
Start line of range to search possible breakpoint locations in.
|
Source |
getSource()
The source location of the breakpoints; either 'source.path' or 'source.reference' must be
specified.
|
int |
hashCode() |
BreakpointLocationsArguments |
setColumn(Integer column) |
BreakpointLocationsArguments |
setEndColumn(Integer endColumn) |
BreakpointLocationsArguments |
setEndLine(Integer endLine) |
BreakpointLocationsArguments |
setLine(int line) |
BreakpointLocationsArguments |
setSource(Source source) |
public Source getSource()
public BreakpointLocationsArguments setSource(Source source)
public int getLine()
public BreakpointLocationsArguments setLine(int line)
public Integer getColumn()
public BreakpointLocationsArguments setColumn(Integer column)
public Integer getEndLine()
public BreakpointLocationsArguments setEndLine(Integer endLine)
public Integer getEndColumn()
public BreakpointLocationsArguments setEndColumn(Integer endColumn)
public static BreakpointLocationsArguments create(Source source, Integer line)