Initial implementation of the new Debug Plugin
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / launching / IXDebugConstants.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/launching/IXDebugConstants.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/launching/IXDebugConstants.java
new file mode 100644 (file)
index 0000000..4aae1ed
--- /dev/null
@@ -0,0 +1,33 @@
+package net.sourceforge.phpeclipse.xdebug.php.launching;
+
+/**
+ * Constants for the PDA debugger.
+ */
+public interface IXDebugConstants {
+       
+       /**
+        * Unique identifier for the PHP debug model (value 
+        * <code>et.sourceforge.phpeclipse.debug.</code>).
+        */
+       public static final String ID_PHP_DEBUG_MODEL = "net.sourceforge.phpeclipse.xdebug.php";
+       
+       /**
+        * Launch configuration key. Value is a PHPProject name
+        * program. The path is a string representing a full path
+        * to a perl program in the workspace. 
+        */
+       public static final String ATTR_PHP_PROJECT = ID_PHP_DEBUG_MODEL + ".ATTR_PDA_PROFECT";
+       /**
+        * Launch configuration key. Value is a php program.
+        * The path is a string representing a relative path
+        * to a php program in the project. 
+        */
+       public static final String ATTR_PHP_FILE = ID_PHP_DEBUG_MODEL + ".ATTR_PDA_FILE";
+
+       public static final String ATTR_PHP_DEFAULT_INTERPRETER = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_DEFAULT_INTERPRETER";
+
+       public static final String ATTR_PHP_INTERPRETER = ID_PHP_DEBUG_MODEL + ".ATTR_PHP_INTERPRETER";
+
+
+}
+