Method Summary |
|
public static LineBreakpoint | create(String url, int lineNumber) Creates a new breakpoint for given parameters. |
public String | getCondition() Returns condition. |
public ObjectVariable[] | getInstanceFilters(JPDADebugger session) Get the instance filter for a specific debugger session. |
public int | getLineNumber() Gets number of line to stop on. |
public String | getPreferredClassName() Gets the binary class name that is used to submit the breakpoint. |
public String | getSourceName() Returns the name of the source file. |
public String | getSourcePath() Returns source path, relative to the source root. |
public String | getStratum() Returns stratum. |
public JPDAThread[] | getThreadFilters(JPDADebugger session) Get the thread filter for a specific debugger session. |
public String | getURL() Gets the string representation of URL of the source file,
which contains the class to stop on. |
public void | setCondition(String c) Sets condition. |
public void | setInstanceFilters(JPDADebugger session, ObjectVariable[] instances) Set the instance filter for a specific debugger session. |
public void | setLineNumber(int ln) Sets number of line to stop on. |
public void | setPreferredClassName(String className) Sets the binary class name that is used to submit the breakpoint. |
public void | setSourceName(String sn) Sets the name of the source file. |
public void | setSourcePath(String sp) Sets source path, relative to the source root. |
public void | setStratum(String s) Sets stratum. |
public void | setThreadFilters(JPDADebugger session, JPDAThread[] threads) Set the thread filter for a specific debugger session. |
public void | setURL(String url) Sets the string representation of URL of the source file,
which contains the class to stop on. |
public String | toString() Returns a string representation of this object. |