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 identifier for the breakpoint.
|
java.lang.String |
getInstructionReference()
An optional memory reference to where the breakpoint is set.
|
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.
|
java.lang.Integer |
getOffset()
An optional offset from the instruction reference.
|
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 identifier for the breakpoint.
|
void |
setInstructionReference(java.lang.String instructionReference)
An optional memory reference to where the breakpoint is set.
|
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 |
setOffset(java.lang.Integer offset)
An optional offset from the instruction reference.
|
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 shown to the user and can be used to explain why a breakpoint could not be verified.
This is an optional property.
public void setMessage(java.lang.String message)
This is shown to the user and can be used to explain why a breakpoint could not be verified.
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()
If no end line is given, then the end column is assumed to be in the start line.
This is an optional property.
public void setEndColumn(java.lang.Integer endColumn)
If no end line is given, then the end column is assumed to be in the start line.
This is an optional property.
@Pure public java.lang.String getInstructionReference()
This is an optional property.
public void setInstructionReference(java.lang.String instructionReference)
This is an optional property.
@Pure public java.lang.Integer getOffset()
This can be negative.
This is an optional property.
public void setOffset(java.lang.Integer offset)
This can be negative.
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