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
1 /*
2  * Created on May 15, 2003
3  *========================================================================
4  * Modifications history
5  *========================================================================
6  * $Log: not supported by cvs2svn $
7  * Revision 1.1  2004/02/05 03:13:29  agfitzp
8  * Initial submission, outline view is broken due to refactoring
9  *
10  * Revision 1.4  2003/12/10 20:19:16  agfitzp
11  * 3.0 port
12  *
13  * Revision 1.3  2003/06/21 03:48:51  agfitzp
14  * fixed global variables as functions bug
15  * fixed length calculation of instance variables
16  * Automatic outlining is now a preference
17  *
18  * Revision 1.2  2003/05/30 20:53:08  agfitzp
19  * 0.0.2 : Outlining is now done as the user types. Some other bug fixes.
20  *
21  *========================================================================
22  */
23 package net.sourceforge.phpeclipse.js.ui.preferences;
24
25 /**
26  * Publicly available list of preference names as constants.
27  * @author fitzpata
28  */
29 public interface PreferenceNames
30 {
31         String P_COMMENT_COLOR = "commentColor";
32         String P_STRING_COLOR = "stringColor";
33         String P_KEYWORD_COLOR = "keywordColor";
34         String P_DEFAULT_COLOR = "defaultColor";
35         String P_AUTO_OUTLINE = "autoOutline";
36 }