X-Git-Url: http://git.phpeclipse.com 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 index 0000000..49b22f1 --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/preferences/IObfuscatorPreferences.java @@ -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