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 Details

    • PythonBreakpoint

      public PythonBreakpoint​(String filename, int lineno)
      Constructor only stores parameters to members.
      Parameters:
      filename - Filename for the breakpoint.
      lineno - Linenumber for the breakpoint.
  • Method Details

    • getFilename

      public String 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.