1) Added missing strings for italic, underline and strike through.
[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 }