public class Breakpoint
extends java.lang.Object
| Constructor and Description |
|---|
Breakpoint() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getColumn()
An optional start column of the actual range covered by the breakpoint.
|
java.lang.Integer |
getEndColumn()
An optional end column of the actual range covered by the breakpoint.
|
java.lang.Integer |
getEndLine()
An optional end line of the actual range covered by the breakpoint.
|
java.lang.Integer |
getId()
An optional unique identifier for the breakpoint.
|
java.lang.Integer |
getLine()
The start line of the actual range covered by the breakpoint.
|
java.lang.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).
|
void |
setColumn(java.lang.Integer column)
An optional start column of the actual range covered by the breakpoint.
|
void |
setEndColumn(java.lang.Integer endColumn)
An optional end column of the actual range covered by the breakpoint.
|
void |
setEndLine(java.lang.Integer endLine)
An optional end line of the actual range covered by the breakpoint.
|
void |
setId(java.lang.Integer id)
An optional unique identifier for the breakpoint.
|
void |
setLine(java.lang.Integer line)
The start line of the actual range covered by the breakpoint.
|
void |
setMessage(java.lang.String message)
An optional message about the state of the breakpoint.
|
void |
setSource(Source source)
The source where the breakpoint is located.
|
void |
setVerified(boolean verified)
If true breakpoint could be set (but not necessarily at the desired location).
|
java.lang.String |
toString() |
@Pure public java.lang.Integer getId()
This is an optional property.
public void setId(java.lang.Integer id)
This is an optional property.
@Pure public boolean isVerified()
public void setVerified(boolean verified)
@Pure public java.lang.String getMessage()
This is an optional property.
public void setMessage(java.lang.String message)
This is an optional property.
@Pure public Source getSource()
This is an optional property.
public void setSource(Source source)
This is an optional property.
@Pure public java.lang.Integer getLine()
This is an optional property.
public void setLine(java.lang.Integer line)
This is an optional property.
@Pure public java.lang.Integer getColumn()
This is an optional property.
public void setColumn(java.lang.Integer column)
This is an optional property.
@Pure public java.lang.Integer getEndLine()
This is an optional property.
public void setEndLine(java.lang.Integer endLine)
This is an optional property.
@Pure public java.lang.Integer getEndColumn()
This is an optional property.
public void setEndColumn(java.lang.Integer endColumn)
This is an optional property.
@Pure public java.lang.String toString()
toString in class java.lang.Object@Pure public boolean equals(java.lang.Object obj)
equals in class java.lang.Object@Pure public int hashCode()
hashCode in class java.lang.Object