*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / preferences / IObfuscatorPreferences.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/preferences/IObfuscatorPreferences.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/preferences/IObfuscatorPreferences.java
new file mode 100644 (file)
index 0000000..49b22f1
--- /dev/null
@@ -0,0 +1,32 @@
+package net.sourceforge.phpeclipse.preferences;
+
+import org.eclipse.core.runtime.QualifiedName;
+
+/**
+ * constnats for project preferences
+ */
+public interface IObfuscatorPreferences {
+
+  /**
+   * namespace URI for the properties
+   */
+  public static final String PROPERTY_NAMESPACE = "http://phpeclipse.org";
+   
+  /**
+   * property local name for the publish directory
+   */
+  public static final String PUBLISH_PROPERTY = "publish";
+  
+  /**
+   * property qualified name for the publish directory
+   */
+  public static final QualifiedName PUBLISH_PROPERTY_NAME =
+     new QualifiedName(PROPERTY_NAMESPACE,PUBLISH_PROPERTY);
+     
+   /**
+    * default value for the publish directory name
+    */
+   public static final String DEFAULT_PUBLISH_DIR = "c:\\temp";   
+
+
+}
\ No newline at end of file