public class BreakpointLocation
extends java.lang.Object
Constructor and Description |
---|
BreakpointLocation() |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getColumn()
Optional start column of breakpoint location.
|
java.lang.Integer |
getEndColumn()
Optional end column of breakpoint location if the location covers a range.
|
java.lang.Integer |
getEndLine()
Optional end line of breakpoint location if the location covers a range.
|
int |
getLine()
Start line of breakpoint location.
|
int |
hashCode() |
void |
setColumn(java.lang.Integer column)
Optional start column of breakpoint location.
|
void |
setEndColumn(java.lang.Integer endColumn)
Optional end column of breakpoint location if the location covers a range.
|
void |
setEndLine(java.lang.Integer endLine)
Optional end line of breakpoint location if the location covers a range.
|
void |
setLine(int line)
Start line of breakpoint location.
|
java.lang.String |
toString() |
@Pure public int getLine()
public void setLine(int line)
@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