public class Breakpoint extends JSONBase
| Modifier and Type | Method and Description |
|---|---|
static Breakpoint |
create(Boolean verified) |
boolean |
equals(Object obj) |
Integer |
getColumn()
An optional start column of the actual range covered by the breakpoint.
|
Integer |
getEndColumn()
An optional end column of the actual range covered by the breakpoint.
|
Integer |
getEndLine()
An optional end line of the actual range covered by the breakpoint.
|
Integer |
getId()
An optional identifier for the breakpoint.
|
Integer |
getLine()
The start line of the actual range covered by the breakpoint.
|
String |
getMessage()
An optional message about the state of the breakpoint.
|
Source |
getSource()
The source where the breakpoint is located.
|
int |
hashCode() |
boolean |
isVerified()
If true breakpoint could be set (but not necessarily at the desired location).
|
Breakpoint |
setColumn(Integer column) |
Breakpoint |
setEndColumn(Integer endColumn) |
Breakpoint |
setEndLine(Integer endLine) |
Breakpoint |
setId(Integer id) |
Breakpoint |
setLine(Integer line) |
Breakpoint |
setMessage(String message) |
Breakpoint |
setSource(Source source) |
Breakpoint |
setVerified(boolean verified) |
public Integer getId()
public Breakpoint setId(Integer id)
public boolean isVerified()
public Breakpoint setVerified(boolean verified)
public String getMessage()
public Breakpoint setMessage(String message)
public Source getSource()
public Breakpoint setSource(Source source)
public Integer getLine()
public Breakpoint setLine(Integer line)
public Integer getColumn()
public Breakpoint setColumn(Integer column)
public Integer getEndLine()
public Breakpoint setEndLine(Integer endLine)
public Integer getEndColumn()
public Breakpoint setEndColumn(Integer endColumn)
public static Breakpoint create(Boolean verified)