49b22f11a7731c1325ee6166d7217b4a97994ca1
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / preferences / IObfuscatorPreferences.java
1 package net.sourceforge.phpeclipse.preferences;
2
3 import org.eclipse.core.runtime.QualifiedName;
4
5 /**
6  * constnats for project preferences
7  */
8 public interface IObfuscatorPreferences {
9
10   /**
11    * namespace URI for the properties
12    */
13   public static final String PROPERTY_NAMESPACE = "http://phpeclipse.org";
14    
15   /**
16    * property local name for the publish directory
17    */
18   public static final String PUBLISH_PROPERTY = "publish";
19   
20   /**
21    * property qualified name for the publish directory
22    */
23   public static final QualifiedName PUBLISH_PROPERTY_NAME =
24      new QualifiedName(PROPERTY_NAMESPACE,PUBLISH_PROPERTY);
25      
26    /**
27     * default value for the publish directory name
28     */
29    public static final String DEFAULT_PUBLISH_DIR = "c:\\temp";   
30
31
32 }