View Javadoc

1   package net.sf.jameleon.event;
2   
3   public interface BreakPoint{
4   
5       /***
6        * Tells if this class is supposed to pause
7        * @return true if class should pause and wait for user interaction.
8        */
9       public boolean isBreakPoint();
10  
11  }