a6a3bad283c22bec74d7a9e8f16ecf258f4df132
[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         public static final String ATTR_PHP_DEFAULT_DEBUGPORT = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_DEFAULT_DEBUGPORT";
32
33         public static final String ATTR_PHP_DEBUGPORT = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_DEBUGPORT";
34
35         public static final String ATTR_PHP_IDE_ID = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_IDE_ID";
36
37         public static final String ATTR_PHP_REMOTE_LOCATION = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_REMOTE_LOCATION";
38
39         public static final String ATTR_PHP_PATHMAP = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_PATHMAP";
40
41
42 }
43