4aae1ed90d940567097bc38b7c976248dbead2bf
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / launching / IXDebugConstants.java
1 package net.sourceforge.phpeclipse.xdebug.php.launching;
2
3 /**
4  * Constants for the PDA debugger.
5  */
6 public interface IXDebugConstants {
7         
8         /**
9          * Unique identifier for the PHP debug model (value 
10          * <code>et.sourceforge.phpeclipse.debug.</code>).
11          */
12         public static final String ID_PHP_DEBUG_MODEL = "net.sourceforge.phpeclipse.xdebug.php";
13         
14         /**
15          * Launch configuration key. Value is a PHPProject name
16          * program. The path is a string representing a full path
17          * to a perl program in the workspace. 
18          */
19         public static final String ATTR_PHP_PROJECT = ID_PHP_DEBUG_MODEL + ".ATTR_PDA_PROFECT";
20         /**
21          * Launch configuration key. Value is a php program.
22          * The path is a string representing a relative path
23          * to a php program in the project. 
24          */
25         public static final String ATTR_PHP_FILE = ID_PHP_DEBUG_MODEL + ".ATTR_PDA_FILE";
26
27         public static final String ATTR_PHP_DEFAULT_INTERPRETER = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_DEFAULT_INTERPRETER";
28
29         public static final String ATTR_PHP_INTERPRETER = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_INTERPRETER";
30
31
32 }
33