--- /dev/null
+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