Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / core / IPHPDebugEvent.java
1 package net.sourceforge.phpeclipse.xdebug.core;
2
3 public interface IPHPDebugEvent {
4
5         int BREAKPOINT_HIT = 0;
6         int STEP_END = 1;
7         int STOPPED = 2;
8
9 }