edu.udo.cs.yale
Interface BreakpointListener

All Known Implementing Classes:
Main, MainFrame, StatusBar

public interface BreakpointListener

The method breakpointReached(Operator, IOContainer, int) is invoked every time a breakpoint is reached during the experiment.

Version:
$Id: BreakpointListener.java,v 2.11 2006/03/21 15:35:36 ingomierswa Exp $
Author:
Ingo Mierswa, Simon Fischer

Field Summary
static int BREAKPOINT_AFTER
          Indicates a breakpoint after the operator.
static int BREAKPOINT_BEFORE
          Indicates a breakpoint before the operator.
static java.lang.String[] BREAKPOINT_POS_NAME
           
static int BREAKPOINT_WITHIN
          Indicates a breakpoint after the operator.
 
Method Summary
 void breakpointReached(Operator op, IOContainer iocontainer, int location)
          This method is invoked every time a breakpoint is reached during the experiment.
 void resume()
          This method is invoked after the experiment was resumed.
 

Field Detail

BREAKPOINT_BEFORE

static final int BREAKPOINT_BEFORE
Indicates a breakpoint before the operator.

See Also:
Constant Field Values


BREAKPOINT_WITHIN

static final int BREAKPOINT_WITHIN
Indicates a breakpoint after the operator.

See Also:
Constant Field Values


BREAKPOINT_AFTER

static final int BREAKPOINT_AFTER
Indicates a breakpoint after the operator.

See Also:
Constant Field Values


BREAKPOINT_POS_NAME

static final java.lang.String[] BREAKPOINT_POS_NAME
Method Detail

breakpointReached

void breakpointReached(Operator op,
                       IOContainer iocontainer,
                       int location)
This method is invoked every time a breakpoint is reached during the experiment. The location is one out of BREAKPOINT_BEFORE or BREAKPOINT_AFTER.


resume

void resume()
This method is invoked after the experiment was resumed.



Copyright © 2001-2006