Class PythonBreakpoint
java.lang.Object
org.eclipse.ease.lang.python.debugger.PythonBreakpoint
public class PythonBreakpoint extends Object
Helper class to have simpler data exchange format between EASE breakpoint information and Python counterpart.
FIXME: Could reuse functionality from org.python.pydev.debug.model.PyBreakpoint.
-
Constructor Summary
Constructors Constructor Description PythonBreakpoint(String filename, int lineno)
Constructor only stores parameters to members. -
Method Summary
Modifier and Type Method Description String
getFilename()
Returns the filename for the breakpoint.int
getLineno()
Returns the line number for the breakpoint.
-
Constructor Details
-
PythonBreakpoint
Constructor only stores parameters to members.- Parameters:
filename
- Filename for the breakpoint.lineno
- Linenumber for the breakpoint.
-
-
Method Details
-
getFilename
Returns the filename for the breakpoint.- Returns:
- breakpoint's filename.
-
getLineno
public int getLineno()Returns the line number for the breakpoint.- Returns:
- breakpoint's line number.
-