intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.js.ui / src / net / sourceforge / phpeclipse / js / ui / preferences / PreferenceNames.java
diff --git a/archive/net.sourceforge.phpeclipse.js.ui/src/net/sourceforge/phpeclipse/js/ui/preferences/PreferenceNames.java b/archive/net.sourceforge.phpeclipse.js.ui/src/net/sourceforge/phpeclipse/js/ui/preferences/PreferenceNames.java
new file mode 100644 (file)
index 0000000..dc35f5b
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Created on May 15, 2003
+ *========================================================================
+ * Modifications history
+ *========================================================================
+ * $Log: not supported by cvs2svn $
+ * Revision 1.1  2004/02/05 03:13:29  agfitzp
+ * Initial submission, outline view is broken due to refactoring
+ *
+ * Revision 1.4  2003/12/10 20:19:16  agfitzp
+ * 3.0 port
+ *
+ * Revision 1.3  2003/06/21 03:48:51  agfitzp
+ * fixed global variables as functions bug
+ * fixed length calculation of instance variables
+ * Automatic outlining is now a preference
+ *
+ * Revision 1.2  2003/05/30 20:53:08  agfitzp
+ * 0.0.2 : Outlining is now done as the user types. Some other bug fixes.
+ *
+ *========================================================================
+ */
+package net.sourceforge.phpeclipse.js.ui.preferences;
+
+/**
+ * Publicly available list of preference names as constants.
+ * @author fitzpata
+ */
+public interface PreferenceNames
+{
+       String P_COMMENT_COLOR = "commentColor";
+       String P_STRING_COLOR = "stringColor";
+       String P_KEYWORD_COLOR = "keywordColor";
+       String P_DEFAULT_COLOR = "defaultColor";
+       String P_AUTO_OUTLINE = "autoOutline";
+}