9aa8ef0c9b66fad8577a22bb09ed3b477b873300
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ui / PreferenceConstants.java
1 /*******************************************************************************
2  * Copyright (c) 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.ui;
12
13 import net.sourceforge.phpdt.core.IClasspathEntry;
14 import net.sourceforge.phpdt.internal.ui.text.spelling.SpellCheckEngine;
15 import net.sourceforge.phpdt.internal.ui.text.spelling.engine.ISpellCheckPreferenceKeys;
16 import net.sourceforge.phpeclipse.IPreferenceConstants;
17 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
18 import net.sourceforge.phpeclipse.phpeditor.util.PHPColorProvider;
19
20 import org.eclipse.jface.action.Action;
21 import org.eclipse.jface.preference.IPreferenceStore;
22 import org.eclipse.jface.preference.PreferenceConverter;
23 import org.eclipse.swt.SWT;
24 import org.eclipse.swt.graphics.RGB;
25 import org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants;
26 import org.eclipse.ui.texteditor.AbstractTextEditor;
27
28 //
29 //import org.phpeclipse.phpdt.internal.ui.JavaPlugin;
30 //import org.phpeclipse.phpdt.internal.ui.preferences.NewJavaProjectPreferencePage;
31
32 /**
33  * Preference constants used in the JDT-UI preference store. Clients should only read the JDT-UI preference store using these
34  * values. Clients are not allowed to modify the preference store programmatically.
35  *
36  * @since 2.0
37  */
38 public class PreferenceConstants {
39
40   private PreferenceConstants() {
41   }
42
43   /**
44    * A named preference that controls return type rendering of methods in the UI.
45    * <p>
46    * Value is of type <code>Boolean</code>: if <code>true</code> return types are rendered
47    * </p>
48    */
49   public static final String APPEARANCE_METHOD_RETURNTYPE = "net.sourceforge.phpdt.ui.methodreturntype"; //$NON-NLS-1$
50
51   /**
52    * A named preference that controls if override indicators are rendered in the UI.
53    * <p>
54    * Value is of type <code>Boolean</code>: if <code>true</code> override indicators are rendered
55    * </p>
56    */
57   public static final String APPEARANCE_OVERRIDE_INDICATOR = "net.sourceforge.phpdt.ui.overrideindicator"; //$NON-NLS-1$
58
59   /**
60    * A named preference that defines the pattern used for package name compression.
61    * <p>
62    * Value is of type <code>String</code>. For example foe the given package name 'net.sourceforge.phpdt' pattern '.' will compress it
63    * to '..jdt', '1~' to 'o~.e~.jdt'.
64    * </p>
65    */
66   public static final String APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW = "PackagesView.pkgNamePatternForPackagesView"; //$NON-NLS-1$
67
68   /**
69    * A named preference that controls if package name compression is turned on or off.
70    * <p>
71    * Value is of type <code>Boolean</code>.
72    * </p>
73    *
74    * @see #APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW
75    */
76   public static final String APPEARANCE_COMPRESS_PACKAGE_NAMES = "net.sourceforge.phpdt.ui.compresspackagenames"; //$NON-NLS-1$
77
78   /**
79    * A named preference that controls if empty inner packages are folded in the hierarchical mode of the package explorer.
80    * <p>
81    * Value is of type <code>Boolean</code>: if <code>true</code> empty inner packages are folded.
82    * </p>
83    *
84    * @since 2.1
85    */
86   public static final String APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER = "net.sourceforge.phpdt.ui.flatPackagesInPackageExplorer"; //$NON-NLS-1$
87
88   /**
89    * A named preference that defines how member elements are ordered by the Java views using the <code>JavaElementSorter</code>.
90    * <p>
91    * Value is of type <code>String</code>: A comma separated list of the following entries. Each entry must be in the list, no
92    * duplication. List order defines the sort order.
93    * <ul>
94    * <li><b>T </b>: Types</li>
95    * <li><b>C </b>: Constructors</li>
96    * <li><b>I </b>: Initializers</li>
97    * <li><b>M </b>: Methods</li>
98    * <li><b>F </b>: Fields</li>
99    * <li><b>SI </b>: Static Initializers</li>
100    * <li><b>SM </b>: Static Methods</li>
101    * <li><b>SF </b>: Static Fields</li>
102    * </ul>
103    * </p>
104    *
105    * @since 2.1
106    */
107   public static final String APPEARANCE_MEMBER_SORT_ORDER = "outlinesortoption"; //$NON-NLS-1$
108
109   /**
110    * A named preference that defines how member elements are ordered by visibility in the Java views using the
111    * <code>JavaElementSorter</code>.
112    * <p>
113    * Value is of type <code>String</code>: A comma separated list of the following entries. Each entry must be in the list, no
114    * duplication. List order defines the sort order.
115    * <ul>
116    * <li><b>B </b>: Public</li>
117    * <li><b>V </b>: Private</li>
118    * <li><b>R </b>: Protected</li>
119    * <li><b>D </b>: Default</li>
120    * </ul>
121    * </p>
122    *
123    * @since 3.0
124    */
125   public static final String APPEARANCE_VISIBILITY_SORT_ORDER = "net.sourceforge.phpdt.ui.visibility.order"; //$NON-NLS-1$
126
127   /**
128    * A named preferences that controls if Java elements are also sorted by visibility.
129    * <p>
130    * Value is of type <code>Boolean</code>.
131    * </p>
132    *
133    * @since 3.0
134    */
135   public static final String APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER = "net.sourceforge.phpdt.ui.enable.visibility.order"; //$NON-NLS-1$
136
137   /**
138    * A named preference that controls if prefix removal during setter/getter generation is turned on or off.
139    * <p>
140    * Value is of type <code>Boolean</code>.
141    * </p>
142    */
143   public static final String CODEGEN_USE_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.enable"; //$NON-NLS-1$
144
145   /**
146    * A named preference that holds a list of prefixes to be removed from a local variable to compute setter and gettter names.
147    * <p>
148    * Value is of type <code>String</code>: comma separated list of prefixed
149    * </p>
150    *
151    * @see #CODEGEN_USE_GETTERSETTER_PREFIX
152    */
153   public static final String CODEGEN_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.list"; //$NON-NLS-1$
154
155   /**
156    * A named preference that controls if suffix removal during setter/getter generation is turned on or off.
157    * <p>
158    * Value is of type <code>Boolean</code>.
159    * </p>
160    */
161   public static final String CODEGEN_USE_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.enable"; //$NON-NLS-1$
162
163   /**
164    * A named preference that holds a list of suffixes to be removed from a local variable to compute setter and getter names.
165    * <p>
166    * Value is of type <code>String</code>: comma separated list of suffixes
167    * </p>
168    *
169    * @see #CODEGEN_USE_GETTERSETTER_SUFFIX
170    */
171   public static final String CODEGEN_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.list"; //$NON-NLS-1$
172   /**
173          * A named preference that controls whether the keyword "this" will be added
174          * automatically to field accesses in generated methods.
175          * <p>
176          * Value is of type <code>Boolean</code>.
177          * </p>
178          * @since 3.0
179          */
180         public static final String CODEGEN_KEYWORD_THIS= "org.eclipse.jdt.ui.keywordthis"; //$NON-NLS-1$
181
182         /**
183          * A named preference that controls whether to use the prefix "is" or the prefix "get" for
184          * automatically created getters which return a boolean field.
185          * <p>
186          * Value is of type <code>Boolean</code>.
187          * </p>
188          * @since 3.0
189          */
190         public static final String CODEGEN_IS_FOR_GETTERS= "org.eclipse.jdt.ui.gettersetter.use.is"; //$NON-NLS-1$
191
192
193         /**
194          * A named preference that defines the preferred variable names for exceptions in
195          * catch clauses.
196          * <p>
197          * Value is of type <code>String</code>.
198          * </p>
199          * @since 3.0
200          */
201         public static final String CODEGEN_EXCEPTION_VAR_NAME= "org.eclipse.jdt.ui.exception.name"; //$NON-NLS-1$
202
203   /**
204    * A named preference that controls if comment stubs will be added automatically to newly created types and methods.
205    * <p>
206    * Value is of type <code>Boolean</code>.
207    * </p>
208    *
209    * @since 2.1
210    */
211   public static final String CODEGEN_ADD_COMMENTS = "net.sourceforge.phpdt.ui.phpdoc"; //$NON-NLS-1$
212
213   /**
214    * A name preference that controls if a JavaDoc stub gets added to newly created types and methods.
215    * <p>
216    * Value is of type <code>Boolean</code>.
217    * </p>
218    *
219    * @deprecated Use CODEGEN_ADD_COMMENTS instead (Name is more precise).
220    */
221   //  public static final String CODEGEN__JAVADOC_STUBS = CODEGEN_ADD_COMMENTS; //$NON-NLS-1$
222   /**
223    * A named preference that controls if a non-phpdoc comment gets added to methods generated via the "Override Methods" operation.
224    * <p>
225    * Value is of type <code>Boolean</code>.
226    * </p>
227    */
228   public static final String CODEGEN__NON_JAVADOC_COMMENTS = "net.sourceforge.phpdt.ui.seecomments"; //$NON-NLS-1$
229
230   /**
231    * A named preference that controls if a file comment gets added to newly created files.
232    * <p>
233    * Value is of type <code>Boolean</code>.
234    * </p>
235    */
236   public static final String CODEGEN__FILE_COMMENTS = "net.sourceforge.phpdt.ui.filecomments"; //$NON-NLS-1$
237
238   /**
239    * A named preference that holds a list of comma separated package names. The list specifies the import order used by the
240    * "Organize Imports" opeation.
241    * <p>
242    * Value is of type <code>String</code>: semicolon separated list of package names
243    * </p>
244    */
245 //  public static final String ORGIMPORTS_IMPORTORDER = "net.sourceforge.phpdt.ui.importorder"; //$NON-NLS-1$
246
247   /**
248    * A named preference that specifies the number of imports added before a star-import declaration is used.
249    * <p>
250    * Value is of type <code>Int</code>: positive value specifing the number of non star-import is used
251    * </p>
252    */
253   public static final String ORGIMPORTS_ONDEMANDTHRESHOLD = "net.sourceforge.phpdt.ui.ondemandthreshold"; //$NON-NLS-1$
254
255   /**
256    * A named preferences that controls if types that start with a lower case letters get added by the "Organize Import" operation.
257    * <p>
258    * Value is of type <code>Boolean</code>.
259    * </p>
260    */
261   public static final String ORGIMPORTS_IGNORELOWERCASE = "net.sourceforge.phpdt.ui.ignorelowercasenames"; //$NON-NLS-1$
262
263   /**
264    * A named preference that speficies whether children of a compilation unit are shown in the package explorer.
265    * <p>
266    * Value is of type <code>Boolean</code>.
267    * </p>
268    */
269   public static final String SHOW_CU_CHILDREN = "net.sourceforge.phpdt.ui.packages.cuchildren"; //$NON-NLS-1$
270
271   /**
272    * A named preference that controls whether the package explorer's selection is linked to the active editor.
273    * <p>
274    * Value is of type <code>Boolean</code>.
275    * </p>
276    */
277   public static final String LINK_PACKAGES_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktoeditor"; //$NON-NLS-1$
278
279   /**
280    * A named preference that controls whether the hierarchy view's selection is linked to the active editor.
281    * <p>
282    * Value is of type <code>Boolean</code>.
283    * </p>
284    */
285   public static final String LINK_TYPEHIERARCHY_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktypehierarchytoeditor"; //$NON-NLS-1$
286
287   /**
288    * A named preference that controls whether the browsing view's selection is linked to the active editor.
289    * <p>
290    * Value is of type <code>Boolean</code>.
291    * </p>
292    *
293    * @since 2.1
294    */
295   public static final String LINK_BROWSING_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
296
297   /**
298    * A named preference that controls whether new projects are generated using source and output folder.
299    * <p>
300    * Value is of type <code>Boolean</code>. if <code>true</code> new projects are created with a source and output folder. If
301    * <code>false</code> source and output folder equals to the project.
302    * </p>
303    */
304   public static final String SRCBIN_FOLDERS_IN_NEWPROJ = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersInNewProjects"; //$NON-NLS-1$
305
306   /**
307    * A named preference that specifies the source folder name used when creating a new Java project. Value is inactive if
308    * <code>SRCBIN_FOLDERS_IN_NEWPROJ</code> is set to <code>false</code>.
309    * <p>
310    * Value is of type <code>String</code>.
311    * </p>
312    *
313    * @see #SRCBIN_FOLDERS_IN_NEWPROJ
314    */
315   public static final String SRCBIN_SRCNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersSrcName"; //$NON-NLS-1$
316
317   /**
318    * A named preference that specifies the output folder name used when creating a new Java project. Value is inactive if
319    * <code>SRCBIN_FOLDERS_IN_NEWPROJ</code> is set to <code>false</code>.
320    * <p>
321    * Value is of type <code>String</code>.
322    * </p>
323    *
324    * @see #SRCBIN_FOLDERS_IN_NEWPROJ
325    */
326   public static final String SRCBIN_BINNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersBinName"; //$NON-NLS-1$
327
328   /**
329    * A named preference that holds a list of possible JRE libraries used by the New Java Project wizard. An library consists of a
330    * description and an arbitrary number of <code>IClasspathEntry</code>s, that will represent the JRE on the new project's
331    * classpath.
332    * <p>
333    * Value is of type <code>String</code>: a semicolon separated list of encoded JRE libraries.
334    * <code>NEWPROJECT_JRELIBRARY_INDEX</code> defines the currently used library. Clients should use the method
335    * <code>encodeJRELibrary</code> to encode a JRE library into a string and the methods
336    * <code>decodeJRELibraryDescription(String)</code> and <code>
337    * decodeJRELibraryClasspathEntries(String)</code> to decode the
338    * description and the array of classpath entries from an encoded string.
339    * </p>
340    *
341    * @see #NEWPROJECT_JRELIBRARY_INDEX
342    * @see #encodeJRELibrary(String, IClasspathEntry[])
343    * @see #decodeJRELibraryDescription(String)
344    * @see #decodeJRELibraryClasspathEntries(String)
345    */
346   public static final String NEWPROJECT_JRELIBRARY_LIST = "net.sourceforge.phpdt.ui.wizards.jre.list"; //$NON-NLS-1$
347
348   /**
349    * A named preferences that specifies the current active JRE library.
350    * <p>
351    * Value is of type <code>Int</code>: an index into the list of possible JRE libraries.
352    * </p>
353    *
354    * @see #NEWPROJECT_JRELIBRARY_LIST
355    */
356   public static final String NEWPROJECT_JRELIBRARY_INDEX = "net.sourceforge.phpdt.ui.wizards.jre.index"; //$NON-NLS-1$
357
358   /**
359    * A named preference that controls if a new type hierarchy gets opened in a new type hierarchy perspective or inside the type
360    * hierarchy view part.
361    * <p>
362    * Value is of type <code>String</code>: possible values are <code>
363    * OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE</code> or <code>
364    * OPEN_TYPE_HIERARCHY_IN_VIEW_PART</code>.
365    * </p>
366    *
367    * @see #OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE
368    * @see #OPEN_TYPE_HIERARCHY_IN_VIEW_PART
369    */
370   public static final String OPEN_TYPE_HIERARCHY = "net.sourceforge.phpdt.ui.openTypeHierarchy"; //$NON-NLS-1$
371
372   /**
373    * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
374    *
375    * @see #OPEN_TYPE_HIERARCHY
376    */
377   public static final String OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE = "perspective"; //$NON-NLS-1$
378
379   /**
380    * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
381    *
382    * @see #OPEN_TYPE_HIERARCHY
383    */
384   public static final String OPEN_TYPE_HIERARCHY_IN_VIEW_PART = "viewPart"; //$NON-NLS-1$
385
386   /**
387    * A named preference that controls the behaviour when double clicking on a container in the packages view.
388    * <p>
389    * Value is of type <code>String</code>: possible values are <code>
390    * DOUBLE_CLICK_GOES_INTO</code> or <code>
391    * DOUBLE_CLICK_EXPANDS</code>.
392    * </p>
393    *
394    * @see #DOUBLE_CLICK_EXPANDS
395    * @see #DOUBLE_CLICK_GOES_INTO
396    */
397   public static final String DOUBLE_CLICK = "packageview.doubleclick"; //$NON-NLS-1$
398
399   /**
400    * A string value used by the named preference <code>DOUBLE_CLICK</code>.
401    *
402    * @see #DOUBLE_CLICK
403    */
404   public static final String DOUBLE_CLICK_GOES_INTO = "packageview.gointo"; //$NON-NLS-1$
405
406   /**
407    * A string value used by the named preference <code>DOUBLE_CLICK</code>.
408    *
409    * @see #DOUBLE_CLICK
410    */
411   public static final String DOUBLE_CLICK_EXPANDS = "packageview.doubleclick.expands"; //$NON-NLS-1$
412
413   /**
414    * A named preference that controls whether Java views update their presentation while editing or when saving the content of an
415    * editor.
416    * <p>
417    * Value is of type <code>String</code>: possible values are <code>
418    * UPDATE_ON_SAVE</code> or <code>
419    * UPDATE_WHILE_EDITING</code>.
420    * </p>
421    *
422    * @see #UPDATE_ON_SAVE
423    * @see #UPDATE_WHILE_EDITING
424    */
425   public static final String UPDATE_JAVA_VIEWS = "JavaUI.update"; //$NON-NLS-1$
426
427   /**
428    * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
429    *
430    * @see #UPDATE_JAVA_VIEWS
431    */
432   public static final String UPDATE_ON_SAVE = "JavaUI.update.onSave"; //$NON-NLS-1$
433
434   /**
435    * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
436    *
437    * @see #UPDATE_JAVA_VIEWS
438    */
439   public static final String UPDATE_WHILE_EDITING = "JavaUI.update.whileEditing"; //$NON-NLS-1$
440
441   /**
442    * A named preference that holds the path of the Javadoc command used by the Javadoc creation wizard.
443    * <p>
444    * Value is of type <code>String</code>.
445    * </p>
446    */
447   public static final String JAVADOC_COMMAND = "command"; //$NON-NLS-1$
448
449   /**
450    * A named preference that defines whether hint to make hover sticky should be shown.
451    *
452    * @see JavaUI
453    * @since 3.0
454    */
455   public static final String EDITOR_SHOW_TEXT_HOVER_AFFORDANCE = "PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE"; //$NON-NLS-1$
456
457   /**
458    * A named preference that defines the key for the hover modifiers.
459    *
460    * @see JavaUI
461    * @since 2.1
462    */
463   public static final String EDITOR_TEXT_HOVER_MODIFIERS = "hoverModifiers"; //$NON-NLS-1$
464
465   /**
466    * The id of the best match hover contributed for extension point <code>javaEditorTextHovers</code>.
467    *
468    * @since 2.1
469    */
470   public static String ID_BESTMATCH_HOVER = "net.sourceforge.phpdt.ui.BestMatchHover"; //$NON-NLS-1$
471
472   /**
473    * The id of the source code hover contributed for extension point <code>javaEditorTextHovers</code>.
474    *
475    * @since 2.1
476    */
477   public static String ID_SOURCE_HOVER = "net.sourceforge.phpdt.ui.JavaSourceHover"; //$NON-NLS-1$
478
479   /**
480    * The id of the problem hover contributed for extension point <code>javaEditorTextHovers</code>.
481    *
482    * @since 2.1
483    */
484   public static String ID_PROBLEM_HOVER = "net.sourceforge.phpdt.ui.ProblemHover"; //$NON-NLS-1$
485
486   /**
487    * A named preference that controls whether bracket matching highlighting is turned on or off.
488    * <p>
489    * Value is of type <code>Boolean</code>.
490    * </p>
491    */
492   public final static String EDITOR_MATCHING_BRACKETS = "matchingBrackets"; //$NON-NLS-1$
493
494   /**
495    * A named preference that holds the color used to highlight matching brackets.
496    * <p>
497    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
498    * </p>
499    *
500    * @see org.eclipse.jface.resource.StringConverter
501    * @see org.eclipse.jface.preference.PreferenceConverter
502    */
503   public final static String EDITOR_MATCHING_BRACKETS_COLOR = "matchingBracketsColor"; //$NON-NLS-1$
504
505   /**
506    * A named preference that controls whether the current line highlighting is turned on or off.
507    * <p>
508    * Value is of type <code>Boolean</code>.
509    * </p>
510    */
511   public final static String EDITOR_CURRENT_LINE = "currentLine"; //$NON-NLS-1$
512
513   /**
514    * A named preference that holds the color used to highlight the current line.
515    * <p>
516    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
517    * </p>
518    *
519    * @see org.eclipse.jface.resource.StringConverter
520    * @see org.eclipse.jface.preference.PreferenceConverter
521    */
522   public final static String EDITOR_CURRENT_LINE_COLOR = "currentLineColor"; //$NON-NLS-1$
523
524   /**
525    * A named preference that controls whether the print margin is turned on or off.
526    * <p>
527    * Value is of type <code>Boolean</code>.
528    * </p>
529    */
530   public final static String EDITOR_PRINT_MARGIN = "printMargin"; //$NON-NLS-1$
531
532   /**
533    * A named preference that holds the color used to render the print margin.
534    * <p>
535    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
536    * </p>
537    *
538    * @see org.eclipse.jface.resource.StringConverter
539    * @see org.eclipse.jface.preference.PreferenceConverter
540    */
541   public final static String EDITOR_PRINT_MARGIN_COLOR = "printMarginColor"; //$NON-NLS-1$
542
543   /**
544    * Print margin column. Int value.
545    */
546   public final static String EDITOR_PRINT_MARGIN_COLUMN = "printMarginColumn"; //$NON-NLS-1$
547
548   /**
549    * A named preference that holds the color used for the find/replace scope.
550    * <p>
551    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
552    * </p>
553    *
554    * @see org.eclipse.jface.resource.StringConverter
555    * @see org.eclipse.jface.preference.PreferenceConverter
556    */
557   public final static String EDITOR_FIND_SCOPE_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FIND_SCOPE;
558
559   /**
560    * A named preference that specifies if the editor uses spaces for tabs.
561    * <p>
562    * Value is of type <code>Boolean</code>. If <code>true</code> spaces instead of tabs are used in the editor. If
563    * <code>false</code> the editor inserts a tab character when pressing the tab key.
564    * </p>
565    */
566   public final static String EDITOR_SPACES_FOR_TABS = "spacesForTabs"; //$NON-NLS-1$
567
568   /**
569    * A named preference that holds the number of spaces used per tab in the editor.
570    * <p>
571    * Value is of type <code>Int</code>: positive int value specifying the number of spaces per tab.
572    * </p>
573    */
574   public final static String EDITOR_TAB_WIDTH = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_TAB_WIDTH; //"net.sourceforge.phpdt.ui.editor.tab.width";
575
576   // //$NON-NLS-1$
577
578   /**
579    * A named preference that controls whether the outline view selection should stay in sync with with the element at the current
580    * cursor position.
581    * <p>
582    * Value is of type <code>Boolean</code>.
583    * </p>
584    *
585    * @since 2.1
586    */
587   public final static String EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE = "JavaEditor.SyncOutlineOnCursorMove"; //$NON-NLS-1$
588
589   /**
590    * A named preference that controls if correction indicators are shown in the UI.
591    * <p>
592    * Value is of type <code>Boolean</code>.
593    * </p>
594    */
595   public final static String EDITOR_CORRECTION_INDICATION = "JavaEditor.ShowTemporaryProblem"; //$NON-NLS-1$
596
597   /**
598    * A named preference that controls whether the editor shows problem indicators in text (squiggly lines).
599    * <p>
600    * Value is of type <code>Boolean</code>.
601    * </p>
602    */
603   //  public final static String EDITOR_PROBLEM_INDICATION = "problemIndication"; //$NON-NLS-1$
604   /**
605    * A named preference that holds the color used to render problem indicators.
606    * <p>
607    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
608    * </p>
609    *
610    * @see #EDITOR_PROBLEM_INDICATION
611    * @see org.eclipse.jface.resource.StringConverter
612    * @see org.eclipse.jface.preference.PreferenceConverter
613    */
614   //  public final static String EDITOR_PROBLEM_INDICATION_COLOR = "problemIndicationColor"; //$NON-NLS-1$
615   /**
616    * PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR; A named preference that controls whether the editor shows warning
617    * indicators in text (squiggly lines).
618    * <p>
619    * Value is of type <code>Boolean</code>.
620    * </p>
621    */
622   //  public final static String EDITOR_WARNING_INDICATION = "warningIndication"; //$NON-NLS-1$
623   /**
624    * A named preference that holds the color used to render warning indicators.
625    * <p>
626    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
627    * </p>
628    *
629    * @see #EDITOR_WARNING_INDICATION
630    * @see org.eclipse.jface.resource.StringConverter
631    * @see org.eclipse.jface.preference.PreferenceConverter
632    */
633   //  public final static String EDITOR_WARNING_INDICATION_COLOR = "warningIndicationColor"; //$NON-NLS-1$
634   /**
635    * A named preference that controls whether the editor shows task indicators in text (squiggly lines).
636    * <p>
637    * Value is of type <code>Boolean</code>.
638    * </p>
639    */
640   public final static String EDITOR_TASK_INDICATION = "taskIndication"; //$NON-NLS-1$
641
642   /**
643    * A named preference that holds the color used to render task indicators.
644    * <p>
645    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
646    * </p>
647    *
648    * @see #EDITOR_TASK_INDICATION
649    * @see org.eclipse.jface.resource.StringConverter
650    * @see org.eclipse.jface.preference.PreferenceConverter
651    */
652   public final static String EDITOR_TASK_INDICATION_COLOR = "taskIndicationColor"; //$NON-NLS-1$
653
654   /**
655    * A named preference that controls whether the editor shows bookmark indicators in text (squiggly lines).
656    * <p>
657    * Value is of type <code>Boolean</code>.
658    * </p>
659    *
660    * @since 2.1
661    */
662   public final static String EDITOR_BOOKMARK_INDICATION = "bookmarkIndication"; //$NON-NLS-1$
663
664   /**
665    * A named preference that holds the color used to render bookmark indicators.
666    * <p>
667    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
668    * </p>
669    *
670    * @see #EDITOR_BOOKMARK_INDICATION
671    * @see org.eclipse.jface.resource.StringConverter
672    * @see org.eclipse.jface.preference.PreferenceConverter
673    * @since 2.1
674    */
675   public final static String EDITOR_BOOKMARK_INDICATION_COLOR = "bookmarkIndicationColor"; //$NON-NLS-1$
676
677   /**
678    * A named preference that controls whether the editor shows search indicators in text (squiggly lines).
679    * <p>
680    * Value is of type <code>Boolean</code>.
681    * </p>
682    *
683    * @since 2.1
684    */
685   public final static String EDITOR_SEARCH_RESULT_INDICATION = "searchResultIndication"; //$NON-NLS-1$
686
687   /**
688    * A named preference that holds the color used to render search indicators.
689    * <p>
690    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
691    * </p>
692    *
693    * @see #EDITOR_SEARCH_RESULT_INDICATION
694    * @see org.eclipse.jface.resource.StringConverter
695    * @see org.eclipse.jface.preference.PreferenceConverter
696    * @since 2.1
697    */
698   public final static String EDITOR_SEARCH_RESULT_INDICATION_COLOR = "searchResultIndicationColor"; //$NON-NLS-1$
699
700   /**
701    * A named preference that controls whether the editor shows unknown indicators in text (squiggly lines).
702    * <p>
703    * Value is of type <code>Boolean</code>.
704    * </p>
705    *
706    * @since 2.1
707    */
708   public final static String EDITOR_UNKNOWN_INDICATION = "othersIndication"; //$NON-NLS-1$
709
710   /**
711    * A named preference that holds the color used to render unknown indicators.
712    * <p>
713    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
714    * </p>
715    *
716    * @see #EDITOR_UNKNOWN_INDICATION
717    * @see org.eclipse.jface.resource.StringConverter
718    * @see org.eclipse.jface.preference.PreferenceConverter
719    * @since 2.1
720    */
721   public final static String EDITOR_UNKNOWN_INDICATION_COLOR = "othersIndicationColor"; //$NON-NLS-1$
722
723   /**
724    * A named preference that controls whether the overview ruler shows error indicators.
725    * <p>
726    * Value is of type <code>Boolean</code>.
727    * </p>
728    *
729    * @since 2.1
730    */
731   public final static String EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER = "errorIndicationInOverviewRuler"; //$NON-NLS-1$
732
733   /**
734    * A named preference that controls whether the overview ruler shows warning indicators.
735    * <p>
736    * Value is of type <code>Boolean</code>.
737    * </p>
738    *
739    * @since 2.1
740    */
741   public final static String EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER = "warningIndicationInOverviewRuler"; //$NON-NLS-1$
742
743   /**
744    * A named preference that controls whether the overview ruler shows task indicators.
745    * <p>
746    * Value is of type <code>Boolean</code>.
747    * </p>
748    *
749    * @since 2.1
750    */
751   public final static String EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER = "taskIndicationInOverviewRuler"; //$NON-NLS-1$
752
753   /**
754    * A named preference that controls whether the overview ruler shows bookmark indicators.
755    * <p>
756    * Value is of type <code>Boolean</code>.
757    * </p>
758    *
759    * @since 2.1
760    */
761   public final static String EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER = "bookmarkIndicationInOverviewRuler"; //$NON-NLS-1$
762
763   /**
764    * A named preference that controls whether the overview ruler shows search result indicators.
765    * <p>
766    * Value is of type <code>Boolean</code>.
767    * </p>
768    *
769    * @since 2.1
770    */
771   public final static String EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER = "searchResultIndicationInOverviewRuler"; //$NON-NLS-1$
772
773   /**
774    * A named preference that controls whether the overview ruler shows unknown indicators.
775    * <p>
776    * Value is of type <code>Boolean</code>.
777    * </p>
778    *
779    * @since 2.1
780    */
781   public final static String EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER = "othersIndicationInOverviewRuler"; //$NON-NLS-1$
782
783   /**
784    * A named preference that controls whether the 'close strings' feature is enabled in PHP mode
785    * <p>
786    * Value is of type <code>Boolean</code>.
787    * </p>
788    */
789   public final static String EDITOR_CLOSE_STRINGS_DQ_PHP = "closeStringsPHPDQ"; //$NON-NLS-1$
790
791   /**
792    * A named preference that controls whether the 'close strings' feature is enabled in PHP mode
793    * <p>
794    * Value is of type <code>Boolean</code>.
795    * </p>
796    */
797   public final static String EDITOR_CLOSE_STRINGS_SQ_PHP = "closeStringsPHPSQ"; //$NON-NLS-1$
798
799   /**
800    * A named preference that controls whether the 'close brackets' feature is enabled in PHP mode
801    * <p>
802    * Value is of type <code>Boolean</code>.
803    * </p>
804    *
805    * @since 2.1
806    */
807   public final static String EDITOR_CLOSE_BRACKETS_PHP = "closeBracketsPHP"; //$NON-NLS-1$
808
809   /**
810    * A named preference that controls whether the 'wrap words' feature is enabled.
811    * <p>
812    * Value is of type <code>Boolean</code>.
813    * </p>
814    *
815    * @since 2.1
816    */
817   public final static String EDITOR_WRAP_WORDS = "wrapWords"; //$NON-NLS-1$
818
819   /**
820    * A named preference that controls whether the 'wrap strings' feature is enabled.
821    * <p>
822    * Value is of type <code>Boolean</code>.
823    * </p>
824    *
825    * @since 2.1
826    */
827   public final static String EDITOR_WRAP_STRINGS_DQ = "wrapStringsDQ"; //$NON-NLS-1$
828
829   /**
830    * A named preference that controls whether the 'escape strings' feature is enabled.
831    * <p>
832    * Value is of type <code>Boolean</code>.
833    * </p>
834    *
835    * @since 3.0
836    */
837   public final static String EDITOR_ESCAPE_STRINGS_DQ = "escapeStringsDQ"; //$NON-NLS-1$
838
839   /**
840    * A named preference that controls whether the 'wrap strings' feature is enabled.
841    * <p>
842    * Value is of type <code>Boolean</code>.
843    * </p>
844    *
845    * @since 2.1
846    */
847   public final static String EDITOR_WRAP_STRINGS_SQ = "wrapStringsDQ"; //$NON-NLS-1$
848
849   /**
850    * A named preference that controls whether the 'escape strings' feature is enabled.
851    * <p>
852    * Value is of type <code>Boolean</code>.
853    * </p>
854    *
855    * @since 3.0
856    */
857   public final static String EDITOR_ESCAPE_STRINGS_SQ = "escapeStringsSQ"; //$NON-NLS-1$
858
859   /**
860    * A named preference that controls if content assist inserts the common prefix of all proposals before presenting choices.
861    * <p>
862    * Value is of type <code>Boolean</code>.
863    * </p>
864    *
865    * @since 3.0
866    */
867   public final static String CODEASSIST_PREFIX_COMPLETION = "content_assist_prefix_completion"; //$NON-NLS-1$
868
869   /**
870    * A named preference that controls whether the 'close braces' feature is enabled.
871    * <p>
872    * Value is of type <code>Boolean</code>.
873    * </p>
874    *
875    * @since 2.1
876    */
877   public final static String EDITOR_CLOSE_BRACES = "closeBraces"; //$NON-NLS-1$
878
879   /**
880    * A named preference that controls whether the 'close php docs' feature is enabled.
881    * <p>
882    * Value is of type <code>Boolean</code>.
883    * </p>
884    *
885    * @since 2.1
886    */
887   public final static String EDITOR_CLOSE_JAVADOCS = "closeJavaDocs"; //$NON-NLS-1$
888
889   /**
890    * A named preference that controls whether the 'add JavaDoc tags' feature is enabled.
891    * <p>
892    * Value is of type <code>Boolean</code>.
893    * </p>
894    *
895    * @since 2.1
896    */
897   public final static String EDITOR_ADD_JAVADOC_TAGS = "addJavaDocTags"; //$NON-NLS-1$
898
899   /**
900    * A named preference that controls whether the 'format Javadoc tags' feature is enabled.
901    * <p>
902    * Value is of type <code>Boolean</code>.
903    * </p>
904    *
905    * @since 2.1
906    */
907   public final static String EDITOR_FORMAT_JAVADOCS = "formatJavaDocs"; //$NON-NLS-1$
908
909   /**
910    * A named preference that controls whether the 'smart paste' feature is enabled.
911    * <p>
912    * Value is of type <code>Boolean</code>.
913    * </p>
914    *
915    * @since 2.1
916    */
917   public final static String EDITOR_SMART_PASTE = "smartPaste"; //$NON-NLS-1$
918
919   /**
920    * A named preference that controls whether the 'close strings' feature is enabled in HTML mode
921    * <p>
922    * Value is of type <code>Boolean</code>.
923    * </p>
924    *
925    * @since 2.1
926    */
927   public final static String EDITOR_CLOSE_STRINGS_HTML = "closeStringsHTML"; //$NON-NLS-1$
928
929   /**
930    * A named preference that controls whether the 'close brackets' feature is enabled in HTML mode
931    * <p>
932    * Value is of type <code>Boolean</code>.
933    * </p>
934    *
935    * @since 2.1
936    */
937   public final static String EDITOR_CLOSE_BRACKETS_HTML = "closeBracketsHTML"; //$NON-NLS-1$
938
939   /**
940    * A named preference that controls whether the 'smart home-end' feature is enabled.
941    * <p>
942    * Value is of type <code>Boolean</code>.
943    * </p>
944    *
945    * @since 2.1
946    */
947   public final static String EDITOR_SMART_HOME_END = AbstractTextEditor.PREFERENCE_NAVIGATION_SMART_HOME_END;
948
949   /**
950    * A named preference that controls whether the 'sub-word navigation' feature is enabled.
951    * <p>
952    * Value is of type <code>Boolean</code>.
953    * </p>
954    *
955    * @since 2.1
956    */
957   public final static String EDITOR_SUB_WORD_NAVIGATION = "subWordNavigation"; //$NON-NLS-1$
958
959   /**
960    * A named preference that controls if temporary problems are evaluated and shown in the UI.
961    * <p>
962    * Value is of type <code>Boolean</code>.
963    * </p>
964    */
965   public final static String EDITOR_EVALUTE_TEMPORARY_PROBLEMS = "handleTemporaryProblems"; //$NON-NLS-1$
966
967   /**
968    * A named preference that controls if the overview ruler is shown in the UI.
969    * <p>
970    * Value is of type <code>Boolean</code>.
971    * </p>
972    */
973   public final static String EDITOR_OVERVIEW_RULER = "overviewRuler"; //$NON-NLS-1$
974
975   /**
976    * A named preference that controls if the line number ruler is shown in the UI.
977    * <p>
978    * Value is of type <code>Boolean</code>.
979    * </p>
980    */
981   public final static String EDITOR_LINE_NUMBER_RULER = "lineNumberRuler"; //$NON-NLS-1$
982
983   /**
984    * A named preference that holds the color used to render line numbers inside the line number ruler.
985    * <p>
986    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
987    * </p>
988    *
989    * @see org.eclipse.jface.resource.StringConverter
990    * @see org.eclipse.jface.preference.PreferenceConverter
991    * @see #EDITOR_LINE_NUMBER_RULER
992    */
993   public final static String EDITOR_LINE_NUMBER_RULER_COLOR = "lineNumberColor"; //$NON-NLS-1$
994
995   /**
996    * A named preference that holds the color used to render linked positions inside code templates.
997    * <p>
998    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
999    * </p>
1000    *
1001    * @see org.eclipse.jface.resource.StringConverter
1002    * @see org.eclipse.jface.preference.PreferenceConverter
1003    */
1004   public final static String EDITOR_LINKED_POSITION_COLOR = "linkedPositionColor"; //$NON-NLS-1$
1005
1006   /**
1007    * A named preference that holds the color used as the text foreground.
1008    * <p>
1009    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1010    * </p>
1011    *
1012    * @see org.eclipse.jface.resource.StringConverter
1013    * @see org.eclipse.jface.preference.PreferenceConverter
1014    */
1015   public final static String EDITOR_FOREGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND;
1016
1017   /**
1018    * A named preference that describes if the system default foreground color is used as the text foreground.
1019    * <p>
1020    * Value is of type <code>Boolean</code>.
1021    * </p>
1022    */
1023   public final static String EDITOR_FOREGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND_SYSTEM_DEFAULT;
1024
1025   /**
1026    * A named preference that holds the color used as the text background.
1027    * <p>
1028    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1029    * </p>
1030    *
1031    * @see org.eclipse.jface.resource.StringConverter
1032    * @see org.eclipse.jface.preference.PreferenceConverter
1033    */
1034   public final static String EDITOR_BACKGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND;
1035
1036   /**
1037    * A named preference that describes if the system default background color is used as the text foreground.
1038    * <p>
1039    * Value is of type <code>Boolean</code>.
1040    * </p>
1041    */
1042   public final static String EDITOR_BACKGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT;
1043
1044   /**
1045    * Preference key suffix for bold text style preference keys.
1046    */
1047   public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
1048
1049   /**
1050    * Preference key suffix for bold text style preference keys.
1051    */
1052   public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$
1053
1054   /**
1055    * A named preference that holds the color used to render multi line comments.
1056    * <p>
1057    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1058    * </p>
1059    *
1060    * @see org.eclipse.jface.resource.StringConverter
1061    * @see org.eclipse.jface.preference.PreferenceConverter
1062    */
1063   public final static String EDITOR_MULTI_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_MULTILINE_COMMENT;
1064
1065   /**
1066    * The symbolic font name for the Java editor text font (value <code>"net.sourceforge.phpdt.ui.editors.textfont"</code>).
1067    *
1068    * @since 2.1
1069    */
1070   public final static String EDITOR_TEXT_FONT = "net.sourceforge.phpdt.ui.editors.textfont"; //$NON-NLS-1$
1071
1072   /**
1073    * A named preference that controls whether multi line comments are rendered in bold.
1074    * <p>
1075    * Value is of type <code>Boolean</code>. If <code>true</code> multi line comments are rendered in bold. If
1076    * <code>false</code> the are rendered using no font style attribute.
1077    * </p>
1078    */
1079   public final static String EDITOR_MULTI_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_MULTILINE_COMMENT + EDITOR_BOLD_SUFFIX;
1080
1081   /**
1082    * A named preference that holds the color used to render single line comments.
1083    * <p>
1084    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1085    * </p>
1086    *
1087    * @see org.eclipse.jface.resource.StringConverter
1088    * @see org.eclipse.jface.preference.PreferenceConverter
1089    */
1090   public final static String EDITOR_SINGLE_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_SINGLELINE_COMMENT;
1091
1092   /**
1093    * A named preference that controls whether sinle line comments are rendered in bold.
1094    * <p>
1095    * Value is of type <code>Boolean</code>. If <code>true</code> single line comments are rendered in bold. If
1096    * <code>false</code> the are rendered using no font style attribute.
1097    * </p>
1098    */
1099   public final static String EDITOR_SINGLE_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_SINGLELINE_COMMENT + EDITOR_BOLD_SUFFIX;
1100
1101   /**
1102    * A named preference that holds the color used to render operators and brackets.
1103    * <p>
1104    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1105    * </p>
1106    *
1107    * @see org.eclipse.jface.resource.StringConverter
1108    * @see org.eclipse.jface.preference.PreferenceConverter
1109    * @since 3.0
1110    */
1111   public final static String EDITOR_PHP_OPERATOR_COLOR = IPreferenceConstants.PHP_OPERATOR;
1112
1113   /**
1114    * A named preference that controls whether operators and brackets are rendered in bold.
1115    * <p>
1116    * Value is of type <code>Boolean</code>.
1117    * </p>
1118    *
1119    * @since 3.0
1120    */
1121   public final static String EDITOR_PHP_OPERATOR_BOLD = IPreferenceConstants.PHP_OPERATOR + EDITOR_BOLD_SUFFIX;
1122
1123   /**
1124    * A named preference that controls whether operators and brackets are rendered in italic.
1125    * <p>
1126    * Value is of type <code>Boolean</code>.
1127    * </p>
1128    *
1129    * @since 3.0
1130    */
1131   public final static String EDITOR_PHP_OPERATOR_ITALIC = IPreferenceConstants.PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
1132
1133   /**
1134    * A named preference that holds the color used to render operators and brackets.
1135    * <p>
1136    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1137    * </p>
1138    *
1139    * @see org.eclipse.jface.resource.StringConverter
1140    * @see org.eclipse.jface.preference.PreferenceConverter
1141    * @since 3.0
1142    */
1143   public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR = IPreferenceConstants.PHP_BRACE_OPERATOR;
1144
1145   /**
1146    * A named preference that controls whether operators and brackets are rendered in bold.
1147    * <p>
1148    * Value is of type <code>Boolean</code>.
1149    * </p>
1150    *
1151    * @since 3.0
1152    */
1153   public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = IPreferenceConstants.PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
1154
1155   /**
1156    * A named preference that controls whether operators and brackets are rendered in italic.
1157    * <p>
1158    * Value is of type <code>Boolean</code>.
1159    * </p>
1160    *
1161    * @since 3.0
1162    */
1163   public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = IPreferenceConstants.PHP_BRACE_OPERATOR + EDITOR_ITALIC_SUFFIX;
1164
1165   /**
1166    * A named preference that holds the color used to render the 'return' keyword.
1167    * <p>
1168    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1169    * </p>
1170    *
1171    * @see org.eclipse.jface.resource.StringConverter
1172    * @see org.eclipse.jface.preference.PreferenceConverter
1173    * @since 3.0
1174    */
1175   public final static String EDITOR_PHP_KEYWORD_RETURN_COLOR = IPreferenceConstants.PHP_KEYWORD_RETURN;
1176
1177   /**
1178    * A named preference that controls whether 'return' keyword is rendered in bold.
1179    * <p>
1180    * Value is of type <code>Boolean</code>.
1181    * </p>
1182    *
1183    * @since 3.0
1184    */
1185   public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = IPreferenceConstants.PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX;
1186
1187   /**
1188    * A named preference that controls whether 'return' keyword is rendered in italic.
1189    * <p>
1190    * Value is of type <code>Boolean</code>.
1191    * </p>
1192    *
1193    * @since 3.0
1194    */
1195   public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = IPreferenceConstants.PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX;
1196
1197   /**
1198    * A named preference that holds the color used to render php start and stop tags.
1199    * <p>
1200    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1201    * </p>
1202    *
1203    * @see org.eclipse.jface.resource.StringConverter
1204    * @see org.eclipse.jface.preference.PreferenceConverter
1205    */
1206   public final static String EDITOR_PHP_TAG_COLOR = IPreferenceConstants.PHP_TAG;
1207
1208   /**
1209    * A named preference that controls whether php start and stop tags are rendered in bold.
1210    * <p>
1211    * Value is of type <code>Boolean</code>.
1212    * </p>
1213    */
1214   public final static String EDITOR_PHP_TAG_BOLD = IPreferenceConstants.PHP_TAG + EDITOR_BOLD_SUFFIX;
1215
1216   /**
1217    * A named preference that holds the color used to render php keywords.
1218    * <p>
1219    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1220    * </p>
1221    *
1222    * @see org.eclipse.jface.resource.StringConverter
1223    * @see org.eclipse.jface.preference.PreferenceConverter
1224    */
1225   public final static String EDITOR_JAVA_KEYWORD_COLOR = IPreferenceConstants.PHP_KEYWORD;
1226
1227   /**
1228    * A named preference that controls whether keywords are rendered in bold.
1229    * <p>
1230    * Value is of type <code>Boolean</code>.
1231    * </p>
1232    */
1233   public final static String EDITOR_JAVA_KEYWORD_BOLD = IPreferenceConstants.PHP_KEYWORD + EDITOR_BOLD_SUFFIX;
1234
1235   /**
1236    * A named preference that holds the color used to render predefined php function names.
1237    * <p>
1238    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1239    * </p>
1240    *
1241    * @see org.eclipse.jface.resource.StringConverter
1242    * @see org.eclipse.jface.preference.PreferenceConverter
1243    */
1244   public final static String EDITOR_PHP_FUNCTIONNAME_COLOR = IPreferenceConstants.PHP_FUNCTIONNAME;
1245
1246   /**
1247    * A named preference that controls whether function names are rendered in bold.
1248    * <p>
1249    * Value is of type <code>Boolean</code>.
1250    * </p>
1251    */
1252   public final static String EDITOR_PHP_FUNCTIONNAME_BOLD = IPreferenceConstants.PHP_FUNCTIONNAME + EDITOR_BOLD_SUFFIX;
1253
1254   /**
1255    * A named preference that holds the color used to render php variables with prefix '$_'.
1256    * <p>
1257    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1258    * </p>
1259    *
1260    * @see org.eclipse.jface.resource.StringConverter
1261    * @see org.eclipse.jface.preference.PreferenceConverter
1262    */
1263   public final static String EDITOR_PHP_VARIABLE_DOLLAR_COLOR = IPreferenceConstants.PHP_VARIABLE_DOLLAR;
1264
1265   /**
1266    * A named preference that controls whether variables  with prefix '$_' are rendered in bold.
1267    * <p>
1268    * Value is of type <code>Boolean</code>.
1269    * </p>
1270    */
1271   public final static String EDITOR_PHP_VARIABLE_DOLLAR_BOLD = IPreferenceConstants.PHP_VARIABLE_DOLLAR + EDITOR_BOLD_SUFFIX;
1272
1273   /**
1274    * A named preference that holds the color used to render php variables.
1275    * <p>
1276    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1277    * </p>
1278    *
1279    * @see org.eclipse.jface.resource.StringConverter
1280    * @see org.eclipse.jface.preference.PreferenceConverter
1281    */
1282   public final static String EDITOR_PHP_VARIABLE_COLOR = IPreferenceConstants.PHP_VARIABLE;
1283
1284   /**
1285    * A named preference that controls whether variables are rendered in bold.
1286    * <p>
1287    * Value is of type <code>Boolean</code>.
1288    * </p>
1289    */
1290   public final static String EDITOR_PHP_VARIABLE_BOLD = IPreferenceConstants.PHP_VARIABLE + EDITOR_BOLD_SUFFIX;
1291   /**
1292    * A named preference that holds the color used to render php constants.
1293    * <p>
1294    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1295    * </p>
1296    *
1297    * @see org.eclipse.jface.resource.StringConverter
1298    * @see org.eclipse.jface.preference.PreferenceConverter
1299    */
1300   public final static String EDITOR_PHP_CONSTANT_COLOR = IPreferenceConstants.PHP_CONSTANT;
1301
1302   /**
1303    * A named preference that controls whether constants are rendered in bold.
1304    * <p>
1305    * Value is of type <code>Boolean</code>.
1306    * </p>
1307    */
1308   public final static String EDITOR_PHP_CONSTANT_BOLD = IPreferenceConstants.PHP_CONSTANT + EDITOR_BOLD_SUFFIX;
1309
1310   /**
1311    * A named preference that holds the color used to render php types.
1312    * <p>
1313    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1314    * </p>
1315    *
1316    * @see org.eclipse.jface.resource.StringConverter
1317    * @see org.eclipse.jface.preference.PreferenceConverter
1318    */
1319   public final static String EDITOR_PHP_TYPE_COLOR = IPreferenceConstants.PHP_TYPE;
1320
1321   /**
1322    * A named preference that controls whether types are rendered in bold.
1323    * <p>
1324    * Value is of type <code>Boolean</code>.
1325    * </p>
1326    */
1327   public final static String EDITOR_PHP_TYPE_BOLD = IPreferenceConstants.PHP_TYPE + EDITOR_BOLD_SUFFIX;
1328
1329   /**
1330    * A named preference that holds the color used to render string constants.
1331    * <p>
1332    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1333    * </p>
1334    *
1335    * @see org.eclipse.jface.resource.StringConverter
1336    * @see org.eclipse.jface.preference.PreferenceConverter
1337    */
1338   public final static String EDITOR_STRING_COLOR_DQ = IPreferenceConstants.PHP_STRING_DQ;
1339
1340   /**
1341    * A named preference that controls whether string constants are rendered in bold.
1342    * <p>
1343    * Value is of type <code>Boolean</code>.
1344    * </p>
1345    */
1346   public final static String EDITOR_STRING_BOLD_DQ = IPreferenceConstants.PHP_STRING_DQ + EDITOR_BOLD_SUFFIX;
1347
1348   public final static String EDITOR_STRING_COLOR_SQ = IPreferenceConstants.PHP_STRING_SQ;
1349
1350   /**
1351    * A named preference that controls whether string constants are rendered in bold.
1352    * <p>
1353    * Value is of type <code>Boolean</code>.
1354    * </p>
1355    */
1356   public final static String EDITOR_STRING_BOLD_SQ = IPreferenceConstants.PHP_STRING_SQ + EDITOR_BOLD_SUFFIX;
1357
1358   /**
1359    * A named preference that holds the color used to render php default text.
1360    * <p>
1361    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1362    * </p>
1363    *
1364    * @see org.eclipse.jface.resource.StringConverter
1365    * @see org.eclipse.jface.preference.PreferenceConverter
1366    */
1367   public final static String EDITOR_JAVA_DEFAULT_COLOR = IPreferenceConstants.PHP_DEFAULT;
1368
1369   /**
1370    * A named preference that controls whether Java default text is rendered in bold.
1371    * <p>
1372    * Value is of type <code>Boolean</code>.
1373    * </p>
1374    */
1375   public final static String EDITOR_JAVA_DEFAULT_BOLD = IPreferenceConstants.PHP_DEFAULT + EDITOR_BOLD_SUFFIX;
1376
1377   /**
1378    * A named preference that holds the color used to render task tags.
1379    * <p>
1380    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1381    * </p>
1382    *
1383    * @see org.eclipse.jface.resource.StringConverter
1384    * @see org.eclipse.jface.preference.PreferenceConverter
1385    * @since 2.1
1386    */
1387   public final static String EDITOR_TASK_TAG_COLOR = IPreferenceConstants.TASK_TAG;
1388
1389   /**
1390    * A named preference that controls whether task tags are rendered in bold.
1391    * <p>
1392    * Value is of type <code>Boolean</code>.
1393    * </p>
1394    *
1395    * @since 2.1
1396    */
1397   public final static String EDITOR_TASK_TAG_BOLD = IPreferenceConstants.TASK_TAG + EDITOR_BOLD_SUFFIX;
1398
1399   /**
1400    * A named preference that holds the color used to render phpdoc keywords.
1401    * <p>
1402    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1403    * </p>
1404    *
1405    * @see org.eclipse.jface.resource.StringConverter
1406    * @see org.eclipse.jface.preference.PreferenceConverter
1407    */
1408   public final static String EDITOR_JAVADOC_KEYWORD_COLOR = IPreferenceConstants.PHPDOC_KEYWORD;
1409
1410   /**
1411    * A named preference that controls whether phpdoc keywords are rendered in bold.
1412    * <p>
1413    * Value is of type <code>Boolean</code>.
1414    * </p>
1415    */
1416   public final static String EDITOR_JAVADOC_KEYWORD_BOLD = IPreferenceConstants.PHPDOC_KEYWORD + EDITOR_BOLD_SUFFIX;
1417
1418   /**
1419    * A named preference that holds the color used to render phpdoc tags.
1420    * <p>
1421    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1422    * </p>
1423    *
1424    * @see org.eclipse.jface.resource.StringConverter
1425    * @see org.eclipse.jface.preference.PreferenceConverter
1426    */
1427   public final static String EDITOR_JAVADOC_TAG_COLOR = IPreferenceConstants.PHPDOC_TAG;
1428
1429   /**
1430    * A named preference that controls whether phpdoc tags are rendered in bold.
1431    * <p>
1432    * Value is of type <code>Boolean</code>.
1433    * </p>
1434    */
1435   public final static String EDITOR_JAVADOC_TAG_BOLD = IPreferenceConstants.PHPDOC_TAG + EDITOR_BOLD_SUFFIX;
1436
1437   /**
1438    * A named preference that holds the color used to render phpdoc links.
1439    * <p>
1440    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1441    * </p>
1442    *
1443    * @see org.eclipse.jface.resource.StringConverter
1444    * @see org.eclipse.jface.preference.PreferenceConverter
1445    */
1446   public final static String EDITOR_JAVADOC_LINKS_COLOR = IPreferenceConstants.PHPDOC_LINK;
1447
1448   /**
1449    * A named preference that controls whether phpdoc links are rendered in bold.
1450    * <p>
1451    * Value is of type <code>Boolean</code>.
1452    * </p>
1453    */
1454   public final static String EDITOR_JAVADOC_LINKS_BOLD = IPreferenceConstants.PHPDOC_LINK + EDITOR_BOLD_SUFFIX;
1455
1456   /**
1457    * A named preference that holds the color used to render phpdoc default text.
1458    * <p>
1459    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1460    * </p>
1461    *
1462    * @see org.eclipse.jface.resource.StringConverter
1463    * @see org.eclipse.jface.preference.PreferenceConverter
1464    */
1465   public final static String EDITOR_JAVADOC_DEFAULT_COLOR = IPreferenceConstants.PHPDOC_DEFAULT;
1466
1467   /**
1468    * A named preference that controls whether phpdoc default text is rendered in bold.
1469    * <p>
1470    * Value is of type <code>Boolean</code>.
1471    * </p>
1472    */
1473   public final static String EDITOR_JAVADOC_DEFAULT_BOLD = IPreferenceConstants.PHPDOC_DEFAULT + EDITOR_BOLD_SUFFIX;
1474
1475   /**
1476    * A named preference that holds the color used for 'linked-mode' underline.
1477    * <p>
1478    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1479    * </p>
1480    *
1481    * @see org.eclipse.jface.resource.StringConverter
1482    * @see org.eclipse.jface.preference.PreferenceConverter
1483    * @since 2.1
1484    */
1485   public final static String EDITOR_LINK_COLOR = "linkColor"; //$NON-NLS-1$
1486
1487   /**
1488    * A named preference that controls whether hover tooltips in the editor are turned on or off.
1489    * <p>
1490    * Value is of type <code>Boolean</code>.
1491    * </p>
1492    */
1493   public static final String EDITOR_SHOW_HOVER = "net.sourceforge.phpdt.ui.editor.showHover"; //$NON-NLS-1$
1494
1495   /**
1496    * A named preference that defines the hover shown when no control key is pressed.
1497    * <p>
1498    * Value is of type <code>String</code>: possible values are <code>
1499    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1500    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1501    * </p>
1502    *
1503    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1504    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1505    * @see JavaUI
1506    * @since 2.1
1507    */
1508   public static final String EDITOR_NONE_HOVER = "noneHover"; //$NON-NLS-1$
1509
1510   /**
1511    * A named preference that defines the hover shown when the <code>CTRL</code> modifier key is pressed.
1512    * <p>
1513    * Value is of type <code>String</code>: possible values are <code>
1514    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1515    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1516    * </p>
1517    *
1518    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1519    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1520    * @see JavaUI
1521    * @since 2.1
1522    */
1523   public static final String EDITOR_CTRL_HOVER = "ctrlHover"; //$NON-NLS-1$
1524
1525   /**
1526    * A named preference that defines the hover shown when the <code>SHIFT</code> modifier key is pressed.
1527    * <p>
1528    * Value is of type <code>String</code>: possible values are <code>
1529    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1530    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1531    * </p>
1532    *
1533    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1534    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1535    * @see JavaUI ID_*_HOVER
1536    * @since 2.1
1537    */
1538   public static final String EDITOR_SHIFT_HOVER = "shiftHover"; //$NON-NLS-1$
1539
1540   /**
1541    * A named preference that defines the hover shown when the <code>CTRL + ALT</code> modifier keys is pressed.
1542    * <p>
1543    * Value is of type <code>String</code>: possible values are <code>
1544    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1545    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1546    * </p>
1547    *
1548    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1549    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1550    * @see JavaUI ID_*_HOVER
1551    * @since 2.1
1552    */
1553   public static final String EDITOR_CTRL_ALT_HOVER = "ctrlAltHover"; //$NON-NLS-1$
1554
1555   /**
1556    * A named preference that defines the hover shown when the <code>CTRL + ALT + SHIFT</code> modifier keys is pressed.
1557    * <p>
1558    * Value is of type <code>String</code>: possible values are <code>
1559    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1560    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1561    * </p>
1562    *
1563    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1564    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1565    * @see JavaUI ID_*_HOVER
1566    * @since 2.1
1567    */
1568   public static final String EDITOR_CTRL_ALT_SHIFT_HOVER = "ctrlAltShiftHover"; //$NON-NLS-1$
1569
1570   /**
1571    * A named preference that defines the hover shown when the <code>CTRL + SHIFT</code> modifier keys is pressed.
1572    * <p>
1573    * Value is of type <code>String</code>: possible values are <code>
1574    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1575    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1576    * </p>
1577    *
1578    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1579    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1580    * @see JavaUI ID_*_HOVER
1581    * @since 2.1
1582    */
1583   public static final String EDITOR_CTRL_SHIFT_HOVER = "ctrlShiftHover"; //$NON-NLS-1$
1584
1585   /**
1586    * A named preference that defines the hover shown when the <code>ALT</code> modifier key is pressed.
1587    * <p>
1588    * Value is of type <code>String</code>: possible values are <code>
1589    * EDITOR_NO_HOVER_CONFIGURED_ID</code>,
1590    * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1591    * </p>
1592    *
1593    * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1594    * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1595    * @see JavaUI ID_*_HOVER
1596    * @since 2.1
1597    */
1598   public static final String EDITOR_ALT_SHIFT_HOVER = "altShiftHover"; //$NON-NLS-1$
1599
1600   /**
1601    * A string value used by the named preferences for hover configuration to descibe that no hover should be shown for the given key
1602    * modifiers.
1603    *
1604    * @since 2.1
1605    */
1606   public static final String EDITOR_NO_HOVER_CONFIGURED_ID = "noHoverConfiguredId"; //$NON-NLS-1$
1607
1608   /**
1609    * A string value used by the named preferences for hover configuration to descibe that the default hover should be shown for the
1610    * given key modifiers. The default hover is described by the <code>EDITOR_DEFAULT_HOVER</code> property.
1611    *
1612    * @since 2.1
1613    */
1614   public static final String EDITOR_DEFAULT_HOVER_CONFIGURED_ID = "defaultHoverConfiguredId"; //$NON-NLS-1$
1615
1616   /**
1617    * A named preference that defines the hover named the 'default hover'. Value is of type <code>String</code>: possible values
1618    * are <code>
1619    * EDITOR_NO_HOVER_CONFIGURED_ID</code> or <code> the hover id of a hover
1620    * contributed as <code>phpEditorTextHovers</code>.
1621    * </p>
1622    *@since 2.1
1623    */
1624   public static final String EDITOR_DEFAULT_HOVER = "defaultHover"; //$NON-NLS-1$
1625
1626   /**
1627    * A named preference that controls if segmented view (show selected element only) is turned on or off.
1628    * <p>
1629    * Value is of type <code>Boolean</code>.
1630    * </p>
1631    */
1632   public static final String EDITOR_SHOW_SEGMENTS = "net.sourceforge.phpdt.ui.editor.showSegments"; //$NON-NLS-1$
1633
1634   /**
1635    * A named preference that controls if browser like links are turned on or off.
1636    * <p>
1637    * Value is of type <code>Boolean</code>.
1638    * </p>
1639    *
1640    * @since 2.1
1641    */
1642   public static final String EDITOR_BROWSER_LIKE_LINKS = "browserLikeLinks"; //$NON-NLS-1$
1643
1644   /**
1645    * A named preference that controls the key modifier for browser like links.
1646    * <p>
1647    * Value is of type <code>String</code>.
1648    * </p>
1649    *
1650    * @since 2.1
1651    */
1652   public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER = "browserLikeLinksKeyModifier"; //$NON-NLS-1$
1653
1654   /**
1655    * A named preference that controls whether occurrences are marked in the editor.
1656    * <p>
1657    * Value is of type <code>Boolean</code>.
1658    * </p>
1659    *
1660    * @since 3.0
1661    */
1662   public static final String EDITOR_MARK_OCCURRENCES = "markOccurrences"; //$NON-NLS-1$
1663
1664   /**
1665    * A named preference that controls whether occurrences are sticky in the editor.
1666    * <p>
1667    * Value is of type <code>Boolean</code>.
1668    * </p>
1669    *
1670    * @since 3.0
1671    */
1672   public static final String EDITOR_STICKY_OCCURRENCES = "stickyOccurrences"; //$NON-NLS-1$
1673
1674   /**
1675    * A named preference that controls disabling of the overwrite mode.
1676    * <p>
1677    * Value is of type <code>Boolean</code>.
1678    * </p>
1679    *
1680    * @since 3.0
1681    */
1682   public static final String EDITOR_DISABLE_OVERWRITE_MODE = "disable_overwrite_mode"; //$NON-NLS-1$
1683
1684   /**
1685    * A named preference that controls the "smart semicolon" smart typing handler
1686    * <p>
1687    * Value is of type <code>Boolean</code>.
1688    * </p>
1689    *
1690    * @since 3.0
1691    */
1692   public static final String EDITOR_SMART_SEMICOLON = "smart_semicolon"; //$NON-NLS-1$
1693
1694   /**
1695    * A named preference that controls the smart backspace behavior.
1696    * <p>
1697    * Value is of type <code>Boolean</code>.
1698    *
1699    * @since 3.0
1700    */
1701   public static final String EDITOR_SMART_BACKSPACE = "smart_backspace"; //$NON-NLS-1$
1702
1703   /**
1704    * A named preference that controls the "smart opening brace" smart typing handler
1705    * <p>
1706    * Value is of type <code>Boolean</code>.
1707    * </p>
1708    *
1709    * @since 3.0
1710    */
1711   public static final String EDITOR_SMART_OPENING_BRACE = "smart_opening_brace"; //$NON-NLS-1$
1712
1713   /**
1714    * A named preference that controls the smart tab behaviour.
1715    * <p>
1716    * Value is of type <code>Boolean</code>.
1717    *
1718    * @since 3.0
1719    */
1720   public static final String EDITOR_SMART_TAB = "smart_tab"; //$NON-NLS-1$
1721
1722   public static final String EDITOR_P_RTRIM_ON_SAVE = "editor_p_trim_on_save"; //$NON-NLS-1$
1723
1724   /**
1725    * A named preference that controls whether Java comments should be spell-checked.
1726    * <p>
1727    * Value is of type <code>Boolean</code>.
1728    * </p>
1729    *
1730    * @since 3.0
1731    */
1732   public final static String SPELLING_CHECK_SPELLING = ISpellCheckPreferenceKeys.SPELLING_CHECK_SPELLING;
1733
1734   /**
1735    * A named preference that controls whether words containing digits should be skipped during spell-checking.
1736    * <p>
1737    * Value is of type <code>Boolean</code>.
1738    * </p>
1739    *
1740    * @since 3.0
1741    */
1742   public final static String SPELLING_IGNORE_DIGITS = ISpellCheckPreferenceKeys.SPELLING_IGNORE_DIGITS;
1743
1744   /**
1745    * A named preference that controls whether mixed case words should be skipped during spell-checking.
1746    * <p>
1747    * Value is of type <code>Boolean</code>.
1748    * </p>
1749    *
1750    * @since 3.0
1751    */
1752   public final static String SPELLING_IGNORE_MIXED = ISpellCheckPreferenceKeys.SPELLING_IGNORE_MIXED;
1753
1754   /**
1755    * A named preference that controls whether sentence capitalization should be ignored during spell-checking.
1756    * <p>
1757    * Value is of type <code>Boolean</code>.
1758    * </p>
1759    *
1760    * @since 3.0
1761    */
1762   public final static String SPELLING_IGNORE_SENTENCE = ISpellCheckPreferenceKeys.SPELLING_IGNORE_SENTENCE;
1763
1764   /**
1765    * A named preference that controls whether upper case words should be skipped during spell-checking.
1766    * <p>
1767    * Value is of type <code>Boolean</code>.
1768    * </p>
1769    *
1770    * @since 3.0
1771    */
1772   public final static String SPELLING_IGNORE_UPPER = ISpellCheckPreferenceKeys.SPELLING_IGNORE_UPPER;
1773
1774   /**
1775    * A named preference that controls whether urls should be ignored during spell-checking.
1776    * <p>
1777    * Value is of type <code>Boolean</code>.
1778    * </p>
1779    *
1780    * @since 3.0
1781    */
1782   public final static String SPELLING_IGNORE_URLS = ISpellCheckPreferenceKeys.SPELLING_IGNORE_URLS;
1783
1784   /**
1785    * A named preference that controls the locale used for spell-checking.
1786    * <p>
1787    * Value is of type <code>String</code>.
1788    * </p>
1789    *
1790    * @since 3.0
1791    */
1792   public final static String SPELLING_LOCALE = ISpellCheckPreferenceKeys.SPELLING_LOCALE;
1793
1794   /**
1795    * A named preference that controls the number of proposals offered during spell-checking.
1796    * <p>
1797    * Value is of type <code>Integer</code>.
1798    * </p>
1799    *
1800    * @since 3.0
1801    */
1802   public final static String SPELLING_PROPOSAL_THRESHOLD = ISpellCheckPreferenceKeys.SPELLING_PROPOSAL_THRESHOLD;
1803
1804   /**
1805    * A named preference that specifies the workspace user dictionary.
1806    * <p>
1807    * Value is of type <code>Integer</code>.
1808    * </p>
1809    *
1810    * @since 3.0
1811    */
1812   public final static String SPELLING_USER_DICTIONARY = ISpellCheckPreferenceKeys.SPELLING_USER_DICTIONARY;
1813
1814   /**
1815    * A named preference that specifies whether spelling dictionaries are available to content assist.
1816    * <p>
1817    * Value is of type <code>Boolean</code>.
1818    * </p>
1819    *
1820    * @since 3.0
1821    */
1822   public final static String SPELLING_ENABLE_CONTENTASSIST = ISpellCheckPreferenceKeys.SPELLING_ENABLE_CONTENTASSIST;
1823
1824   /**
1825    * A named preference that controls whether code snippets are formatted in Javadoc comments.
1826    * <p>
1827    * Value is of type <code>Boolean</code>.
1828    * </p>
1829    *
1830    * @since 3.0
1831    */
1832   public final static String FORMATTER_COMMENT_FORMATSOURCE = "comment_format_source_code"; //$NON-NLS-1$
1833
1834   /**
1835    * A named preference that controls whether description of Javadoc parameters are indented.
1836    * <p>
1837    * Value is of type <code>Boolean</code>.
1838    * </p>
1839    *
1840    * @since 3.0
1841    */
1842   public final static String FORMATTER_COMMENT_INDENTPARAMETERDESCRIPTION = "comment_indent_parameter_description"; //$NON-NLS-1$
1843
1844   /**
1845    * A named preference that controls whether the header comment of a Java source file is formatted.
1846    * <p>
1847    * Value is of type <code>Boolean</code>.
1848    * </p>
1849    *
1850    * @since 3.0
1851    */
1852   public final static String FORMATTER_COMMENT_FORMATHEADER = "comment_format_header"; //$NON-NLS-1$
1853
1854   /**
1855    * A named preference that controls whether Javadoc root tags are indented.
1856    * <p>
1857    * Value is of type <code>Boolean</code>.
1858    * </p>
1859    *
1860    * @since 3.0
1861    */
1862   public final static String FORMATTER_COMMENT_INDENTROOTTAGS = "comment_indent_root_tags"; //$NON-NLS-1$
1863
1864   /**
1865    * A named preference that controls whether Javadoc comments are formatted by the content formatter.
1866    * <p>
1867    * Value is of type <code>Boolean</code>.
1868    * </p>
1869    *
1870    * @since 3.0
1871    */
1872   public final static String FORMATTER_COMMENT_FORMAT = "comment_format_comments"; //$NON-NLS-1$
1873
1874   /**
1875    * A named preference that controls whether a new line is inserted after Javadoc root tag parameters.
1876    * <p>
1877    * Value is of type <code>Boolean</code>.
1878    * </p>
1879    *
1880    * @since 3.0
1881    */
1882   public final static String FORMATTER_COMMENT_NEWLINEFORPARAMETER = "comment_new_line_for_parameter"; //$NON-NLS-1$
1883
1884   /**
1885    * A named preference that controls whether an empty line is inserted before the Javadoc root tag block.
1886    * <p>
1887    * Value is of type <code>Boolean</code>.
1888    * </p>
1889    *
1890    * @since 3.0
1891    */
1892   public final static String FORMATTER_COMMENT_SEPARATEROOTTAGS = "comment_separate_root_tags"; //$NON-NLS-1$
1893
1894   /**
1895    * A named preference that controls whether blank lines are cleared during formatting
1896    * <p>
1897    * Value is of type <code>Boolean</code>.
1898    * </p>
1899    *
1900    * @since 3.0
1901    */
1902   public final static String FORMATTER_COMMENT_CLEARBLANKLINES = "comment_clear_blank_lines"; //$NON-NLS-1$
1903
1904   /**
1905    * A named preference that controls the line length of comments.
1906    * <p>
1907    * Value is of type <code>Integer</code>. The value must be at least 4 for reasonable formatting.
1908    * </p>
1909    *
1910    * @since 3.0
1911    */
1912   public final static String FORMATTER_COMMENT_LINELENGTH = "comment_line_length"; //$NON-NLS-1$
1913
1914   /**
1915    * A named preference that controls whether html tags are formatted.
1916    * <p>
1917    * Value is of type <code>Boolean</code>.
1918    * </p>
1919    *
1920    * @since 3.0
1921    */
1922   public final static String FORMATTER_COMMENT_FORMATHTML = "comment_format_html"; //$NON-NLS-1$
1923
1924   /**
1925    * A named preference that controls if the Java code assist gets auto activated.
1926    * <p>
1927    * Value is of type <code>Boolean</code>.
1928    * </p>
1929    */
1930   public final static String CODEASSIST_AUTOACTIVATION = "content_assist_autoactivation"; //$NON-NLS-1$
1931
1932   /**
1933    * A name preference that holds the auto activation delay time in milli seconds.
1934    * <p>
1935    * Value is of type <code>Int</code>.
1936    * </p>
1937    */
1938   public final static String CODEASSIST_AUTOACTIVATION_DELAY = "content_assist_autoactivation_delay"; //$NON-NLS-1$
1939
1940   /**
1941    * A named preference that controls if code assist contains only visible proposals.
1942    * <p>
1943    * Value is of type <code>Boolean</code>. if <code>true<code> code assist only contains visible members. If
1944    * <code>false</code> all members are included.
1945    * </p>
1946    */
1947   public final static String CODEASSIST_SHOW_VISIBLE_PROPOSALS = "content_assist_show_visible_proposals"; //$NON-NLS-1$
1948
1949   /**
1950    * A named preference that controls if the Java code assist inserts a proposal automatically if only one proposal is available.
1951    * <p>
1952    * Value is of type <code>Boolean</code>.
1953    * </p>
1954    *
1955    * @since 2.1
1956    */
1957   public final static String CODEASSIST_AUTOINSERT = "content_assist_autoinsert"; //$NON-NLS-1$
1958
1959   /**
1960    * A named preference that controls if the Java code assist adds import statements.
1961    * <p>
1962    * Value is of type <code>Boolean</code>.
1963    * </p>
1964    *
1965    * @since 2.1
1966    */
1967   public final static String CODEASSIST_ADDIMPORT = "content_assist_add_import"; //$NON-NLS-1$
1968
1969   /**
1970    * A named preference that controls if the Java code assist only inserts completions. If set to false the proposals can also
1971    * _replace_ code.
1972    * <p>
1973    * Value is of type <code>Boolean</code>.
1974    * </p>
1975    *
1976    * @since 2.1
1977    */
1978   public final static String CODEASSIST_INSERT_COMPLETION = "content_assist_insert_completion"; //$NON-NLS-1$
1979
1980   /**
1981    * A named preference that controls whether code assist proposals filtering is case sensitive or not.
1982    * <p>
1983    * Value is of type <code>Boolean</code>.
1984    * </p>
1985    */
1986   public final static String CODEASSIST_CASE_SENSITIVITY = "content_assist_case_sensitivity"; //$NON-NLS-1$
1987
1988   /**
1989    * A named preference that defines if code assist proposals are sorted in alphabetical order.
1990    * <p>
1991    * Value is of type <code>Boolean</code>. If <code>true</code> that are sorted in alphabetical order. If <code>false</code>
1992    * that are unsorted.
1993    * </p>
1994    */
1995   public final static String CODEASSIST_ORDER_PROPOSALS = "content_assist_order_proposals"; //$NON-NLS-1$
1996
1997   /**
1998    * A named preference that controls if argument names are filled in when a method is selected from as list of code assist
1999    * proposal.
2000    * <p>
2001    * Value is of type <code>Boolean</code>.
2002    * </p>
2003    */
2004   public final static String CODEASSIST_FILL_ARGUMENT_NAMES = "content_assist_fill_method_arguments"; //$NON-NLS-1$
2005
2006   /**
2007    * A named preference that controls if method arguments are guessed when a method is selected from as list of code assist
2008    * proposal.
2009    * <p>
2010    * Value is of type <code>Boolean</code>.
2011    * </p>
2012    *
2013    * @since 2.1
2014    */
2015   public final static String CODEASSIST_GUESS_METHOD_ARGUMENTS = "content_assist_guess_method_arguments"; //$NON-NLS-1$
2016
2017   /**
2018    * A named preference that holds the characters that auto activate code assist in PHP code.
2019    * <p>
2020    * Value is of type <code>Sring</code>. All characters that trigger auto code assist in PHP code.
2021    * </p>
2022    */
2023   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA = "content_assist_autoactivation_triggers_php"; //$NON-NLS-1$
2024
2025   /**
2026    * A named preference that holds the characters that auto activate code assist in PHPDoc.
2027    * <p>
2028    * Value is of type <code>Sring</code>. All characters that trigger auto code assist in PHPDoc.
2029    * </p>
2030    */
2031   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC = "content_assist_autoactivation_triggers_phpdoc"; //$NON-NLS-1$
2032
2033   /**
2034    * A named preference that holds the characters that auto activate code assist in HTML.
2035    * <p>
2036    * Value is of type <code>Sring</code>. All characters that trigger auto code assist in HTML.
2037    * </p>
2038    */
2039   public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML = "content_assist_autoactivation_triggers_html"; //$NON-NLS-1$
2040
2041   /**
2042    * A named preference that holds the background color used in the code assist selection dialog.
2043    * <p>
2044    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2045    * </p>
2046    *
2047    * @see org.eclipse.jface.resource.StringConverter
2048    * @see org.eclipse.jface.preference.PreferenceConverter
2049    */
2050   public final static String CODEASSIST_PROPOSALS_BACKGROUND = "content_assist_proposals_background"; //$NON-NLS-1$
2051
2052   /**
2053    * A named preference that holds the foreground color used in the code assist selection dialog.
2054    * <p>
2055    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2056    * </p>
2057    *
2058    * @see org.eclipse.jface.resource.StringConverter
2059    * @see org.eclipse.jface.preference.PreferenceConverter
2060    */
2061   public final static String CODEASSIST_PROPOSALS_FOREGROUND = "content_assist_proposals_foreground"; //$NON-NLS-1$
2062
2063   /**
2064    * A named preference that holds the background color used for parameter hints.
2065    * <p>
2066    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2067    * </p>
2068    *
2069    * @see org.eclipse.jface.resource.StringConverter
2070    * @see org.eclipse.jface.preference.PreferenceConverter
2071    */
2072   public final static String CODEASSIST_PARAMETERS_BACKGROUND = "content_assist_parameters_background"; //$NON-NLS-1$
2073
2074   /**
2075    * A named preference that holds the foreground color used in the code assist selection dialog
2076    * <p>
2077    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2078    * </p>
2079    *
2080    * @see org.eclipse.jface.resource.StringConverter
2081    * @see org.eclipse.jface.preference.PreferenceConverter
2082    */
2083   public final static String CODEASSIST_PARAMETERS_FOREGROUND = "content_assist_parameters_foreground"; //$NON-NLS-1$
2084
2085   /**
2086    * A named preference that holds the background color used in the code assist selection dialog to mark replaced code.
2087    * <p>
2088    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2089    * </p>
2090    *
2091    * @see org.eclipse.jface.resource.StringConverter
2092    * @see org.eclipse.jface.preference.PreferenceConverter
2093    * @since 2.1
2094    */
2095   public final static String CODEASSIST_REPLACEMENT_BACKGROUND = "content_assist_completion_replacement_background"; //$NON-NLS-1$
2096
2097   /**
2098    * A named preference that holds the foreground color used in the code assist selection dialog to mark replaced code.
2099    * <p>
2100    * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2101    * </p>
2102    *
2103    * @see org.eclipse.jface.resource.StringConverter
2104    * @see org.eclipse.jface.preference.PreferenceConverter
2105    * @since 2.1
2106    */
2107   public final static String CODEASSIST_REPLACEMENT_FOREGROUND = "content_assist_completion_replacement_foreground"; //$NON-NLS-1$
2108
2109   /**
2110    * A named preference that controls the behaviour of the refactoring wizard for showing the error page.
2111    * <p>
2112    * Value is of type <code>String</code>. Valid values are: <code>REFACTOR_FATAL_SEVERITY</code>,
2113    * <code>REFACTOR_ERROR_SEVERITY</code>,<code>REFACTOR_WARNING_SEVERITY</code>
2114    * <code>REFACTOR_INFO_SEVERITY</code>,
2115    * <code>REFACTOR_OK_SEVERITY</code>.
2116    * </p>
2117    *
2118    * @see #REFACTOR_FATAL_SEVERITY
2119    * @see #REFACTOR_ERROR_SEVERITY
2120    * @see #REFACTOR_WARNING_SEVERITY
2121    * @see #REFACTOR_INFO_SEVERITY
2122    * @see #REFACTOR_OK_SEVERITY
2123    */
2124   public static final String REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD = "Refactoring.ErrorPage.severityThreshold"; //$NON-NLS-1$
2125
2126   /**
2127    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2128    *
2129    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2130    */
2131   public static final String REFACTOR_FATAL_SEVERITY = "4"; //$NON-NLS-1$
2132
2133   /**
2134    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2135    *
2136    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2137    */
2138   public static final String REFACTOR_ERROR_SEVERITY = "3"; //$NON-NLS-1$
2139
2140   /**
2141    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2142    *
2143    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2144    */
2145   public static final String REFACTOR_WARNING_SEVERITY = "2"; //$NON-NLS-1$
2146
2147   /**
2148    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2149    *
2150    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2151    */
2152   public static final String REFACTOR_INFO_SEVERITY = "1"; //$NON-NLS-1$
2153
2154   /**
2155    * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2156    *
2157    * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2158    */
2159   public static final String REFACTOR_OK_SEVERITY = "0"; //$NON-NLS-1$
2160
2161   /**
2162    * A named preference thet controls whether all dirty editors are automatically saved before a refactoring is executed.
2163    * <p>
2164    * Value is of type <code>Boolean</code>.
2165    * </p>
2166    */
2167   public static final String REFACTOR_SAVE_ALL_EDITORS = "Refactoring.savealleditors"; //$NON-NLS-1$
2168
2169   /**
2170    * A named preference that controls if the Java Browsing views are linked to the active editor.
2171    * <p>
2172    * Value is of type <code>Boolean</code>.
2173    * </p>
2174    *
2175    * @see #LINK_PACKAGES_TO_EDITOR
2176    */
2177   public static final String BROWSING_LINK_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
2178
2179   /**
2180    * A named preference that controls the layout of the Java Browsing views vertically. Boolean value.
2181    * <p>
2182    * Value is of type <code>Boolean</code>. If <code>true<code> the views are stacked vertical.
2183    * If <code>false</code> they are stacked horizontal.
2184    * </p>
2185    */
2186   public static final String BROWSING_STACK_VERTICALLY = "net.sourceforge.phpdt.ui.browsing.stackVertically"; //$NON-NLS-1$
2187
2188   /**
2189    * A named preference that controls if templates are formatted when applied.
2190    * <p>
2191    * Value is of type <code>Boolean</code>.
2192    * </p>
2193    *
2194    * @since 2.1
2195    */
2196   public static final String TEMPLATES_USE_CODEFORMATTER = "net.sourceforge.phpdt.ui.template.format"; //$NON-NLS-1$
2197
2198   /**
2199    * A named preference that controls whether annotation roll over is used or not.
2200    * <p>
2201    * Value is of type <code>Boolean</code>. If <code>true<code> the annotation ruler column
2202    * uses a roll over to display multiple annotations
2203    * </p>
2204    *
2205    * @since 3.0
2206    */
2207   public static final String EDITOR_ANNOTATION_ROLL_OVER = "editor_annotation_roll_over"; //$NON-NLS-1$
2208
2209   /**
2210    * A named preference that controls the key modifier mask for browser like links. The value is only used if the value of
2211    * <code>EDITOR_BROWSER_LIKE_LINKS</code> cannot be resolved to valid SWT modifier bits.
2212    * <p>
2213    * Value is of type <code>String</code>.
2214    * </p>
2215    *
2216    * @see #EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER
2217    * @since 2.1.1
2218    */
2219   public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK = "browserLikeLinksKeyModifierMask"; //$NON-NLS-1$
2220
2221   /**
2222    * A named preference that defines the key for the hover modifier state masks. The value is only used if the value of
2223    * <code>EDITOR_TEXT_HOVER_MODIFIERS</code> cannot be resolved to valid SWT modifier bits.
2224    *
2225    * @see JavaUI
2226    * @see #EDITOR_TEXT_HOVER_MODIFIERS
2227    * @since 2.1.1
2228    */
2229   public static final String EDITOR_TEXT_HOVER_MODIFIER_MASKS = "hoverModifierMasks"; //$NON-NLS-1$
2230
2231   /**
2232    * A named preference that controls whether folding is enabled in the Java editor.
2233    * <p>
2234    * Value is of type <code>Boolean</code>.
2235    * </p>
2236    *
2237    * @since 3.0
2238    */
2239   public static final String EDITOR_FOLDING_ENABLED = "editor_folding_enabled"; //$NON-NLS-1$
2240
2241   /**
2242    * A named preference that stores the configured folding provider.
2243    * <p>
2244    * Value is of type <code>String</code>.
2245    * </p>
2246    *
2247    * @since 3.0
2248    */
2249   public static final String EDITOR_FOLDING_PROVIDER = "editor_folding_provider"; //$NON-NLS-1$
2250
2251   /**
2252    * A named preference that stores the value for Javadoc folding for the default folding provider.
2253    * <p>
2254    * Value is of type <code>Boolean</code>.
2255    * </p>
2256    *
2257    * @since 3.0
2258    */
2259   public static final String EDITOR_FOLDING_JAVADOC = "editor_folding_default_javadoc"; //$NON-NLS-1$
2260
2261   /**
2262    * A named preference that stores the value for inner type folding for the default folding provider.
2263    * <p>
2264    * Value is of type <code>Boolean</code>.
2265    * </p>
2266    *
2267    * @since 3.0
2268    */
2269   public static final String EDITOR_FOLDING_INNERTYPES = "editor_folding_default_innertypes"; //$NON-NLS-1$
2270
2271   /**
2272    * A named preference that stores the value for method folding for the default folding provider.
2273    * <p>
2274    * Value is of type <code>Boolean</code>.
2275    * </p>
2276    *
2277    * @since 3.0
2278    */
2279   public static final String EDITOR_FOLDING_METHODS = "editor_folding_default_methods"; //$NON-NLS-1$
2280
2281   /**
2282    * A named preference that stores the value for imports folding for the default folding provider.
2283    * <p>
2284    * Value is of type <code>Boolean</code>.
2285    * </p>
2286    *
2287    * @since 3.0
2288    */
2289 //  public static final String EDITOR_FOLDING_IMPORTS = "editor_folding_default_imports"; //$NON-NLS-1$
2290   /**
2291          * A named preference that stores the value for header comment folding for the default folding provider.
2292          * <p>
2293          * Value is of type <code>Boolean</code>.
2294          * </p>
2295          *
2296          * @since 3.1
2297          */
2298         public static final String EDITOR_FOLDING_HEADERS= "editor_folding_default_headers"; //$NON-NLS-1$
2299
2300   public static void initializeDefaultValues(IPreferenceStore store) {
2301     store.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false);
2302
2303     // JavaBasePreferencePage
2304     store.setDefault(PreferenceConstants.LINK_PACKAGES_TO_EDITOR, true);
2305     store.setDefault(PreferenceConstants.LINK_TYPEHIERARCHY_TO_EDITOR, false);
2306     store.setDefault(PreferenceConstants.LINK_BROWSING_VIEW_TO_EDITOR, true);
2307     store.setDefault(PreferenceConstants.OPEN_TYPE_HIERARCHY, PreferenceConstants.OPEN_TYPE_HIERARCHY_IN_VIEW_PART);
2308     store.setDefault(PreferenceConstants.DOUBLE_CLICK, PreferenceConstants.DOUBLE_CLICK_EXPANDS);
2309     store.setDefault(PreferenceConstants.UPDATE_JAVA_VIEWS, PreferenceConstants.UPDATE_WHILE_EDITING);
2310
2311     // AppearancePreferencePage
2312     store.setDefault(PreferenceConstants.APPEARANCE_COMPRESS_PACKAGE_NAMES, false);
2313     store.setDefault(PreferenceConstants.APPEARANCE_METHOD_RETURNTYPE, false);
2314     store.setDefault(PreferenceConstants.SHOW_CU_CHILDREN, true);
2315     store.setDefault(PreferenceConstants.APPEARANCE_OVERRIDE_INDICATOR, true);
2316     store.setDefault(PreferenceConstants.BROWSING_STACK_VERTICALLY, false);
2317     store.setDefault(PreferenceConstants.APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW, ""); //$NON-NLS-1$
2318     store.setDefault(PreferenceConstants.APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER, true);
2319
2320     // ImportOrganizePreferencePage
2321 //    store.setDefault(PreferenceConstants.ORGIMPORTS_IMPORTORDER, "php;phpx;org;com"); //$NON-NLS-1$
2322     store.setDefault(PreferenceConstants.ORGIMPORTS_ONDEMANDTHRESHOLD, 99);
2323     store.setDefault(PreferenceConstants.ORGIMPORTS_IGNORELOWERCASE, true);
2324
2325     // ClasspathVariablesPreferencePage
2326     // CodeFormatterPreferencePage
2327     // CompilerPreferencePage
2328     // no initialization needed
2329
2330     // RefactoringPreferencePage
2331     store.setDefault(PreferenceConstants.REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD, PreferenceConstants.REFACTOR_ERROR_SEVERITY);
2332     store.setDefault(PreferenceConstants.REFACTOR_SAVE_ALL_EDITORS, false);
2333     store.setDefault("RefactoringUI", "dialog");
2334
2335     // TemplatePreferencePage
2336     store.setDefault(PreferenceConstants.TEMPLATES_USE_CODEFORMATTER, true);
2337
2338     // CodeGenerationPreferencePage
2339     store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_PREFIX, false);
2340     store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX, false);
2341     store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX, "fg, f, _$, _, m_"); //$NON-NLS-1$
2342     store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX, "_"); //$NON-NLS-1$
2343
2344     store.setDefault(PreferenceConstants.CODEGEN_KEYWORD_THIS, false);
2345         store.setDefault(PreferenceConstants.CODEGEN_IS_FOR_GETTERS, true);
2346         store.setDefault(PreferenceConstants.CODEGEN_EXCEPTION_VAR_NAME, "e"); //$NON-NLS-1$
2347     store.setDefault(PreferenceConstants.CODEGEN_ADD_COMMENTS, true);
2348     store.setDefault(PreferenceConstants.CODEGEN__NON_JAVADOC_COMMENTS, false);
2349     store.setDefault(PreferenceConstants.CODEGEN__FILE_COMMENTS, false);
2350
2351     // MembersOrderPreferencePage
2352     store.setDefault(PreferenceConstants.APPEARANCE_MEMBER_SORT_ORDER, "T,SF,SI,SM,I,F,C,M"); //$NON-NLS-1$
2353     store.setDefault(PreferenceConstants.APPEARANCE_VISIBILITY_SORT_ORDER, "B,V,R,D"); //$NON-NLS-1$
2354     store.setDefault(PreferenceConstants.APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER, false);
2355     // must add here to guarantee that it is the first in the listener list
2356     store.addPropertyChangeListener(PHPeclipsePlugin.getDefault().getMemberOrderPreferenceCache());
2357
2358     store.setDefault(PreferenceConstants.EDITOR_MATCHING_BRACKETS, true);
2359     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MATCHING_BRACKETS_COLOR, new RGB(192, 192, 192));
2360
2361     store.setDefault(PreferenceConstants.EDITOR_CURRENT_LINE, true);
2362     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_CURRENT_LINE_COLOR, new RGB(225, 235, 224));
2363
2364     store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN, false);
2365     store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN, 80);
2366     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PRINT_MARGIN_COLOR, new RGB(176, 180, 185));
2367
2368     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_FIND_SCOPE_COLOR, new RGB(185, 176, 180));
2369
2370     //    store.setDefault(PreferenceConstants.EDITOR_PROBLEM_INDICATION, true);
2371     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR, new RGB(255, 0, 128));
2372     //    store.setDefault(PreferenceConstants.EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER, true);
2373     //
2374     //    store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION, true);
2375     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_WARNING_INDICATION_COLOR, new RGB(244, 200, 45));
2376     //    store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER, true);
2377     //
2378     //    store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION, false);
2379     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_TASK_INDICATION_COLOR, new RGB(0, 128, 255));
2380     //    store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER, false);
2381     //
2382     //    store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION, false);
2383     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_BOOKMARK_INDICATION_COLOR, new RGB(34, 164, 99));
2384     //    store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER, false);
2385     //
2386     //    store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION, false);
2387     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_COLOR, new RGB(192, 192, 192));
2388     //    store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER, false);
2389     //
2390     //    store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION, false);
2391     //    PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_UNKNOWN_INDICATION_COLOR, new RGB(0, 0, 0));
2392     //    store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER, false);
2393
2394     store.setDefault(PreferenceConstants.EDITOR_CORRECTION_INDICATION, true);
2395     store.setDefault(PreferenceConstants.EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE, true);
2396
2397     store.setDefault(PreferenceConstants.EDITOR_EVALUTE_TEMPORARY_PROBLEMS, true);
2398
2399     store.setDefault(PreferenceConstants.EDITOR_OVERVIEW_RULER, true);
2400
2401     store.setDefault(PreferenceConstants.EDITOR_LINE_NUMBER_RULER, false);
2402     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINE_NUMBER_RULER_COLOR, new RGB(0, 0, 0));
2403
2404     //    WorkbenchChainedTextFontFieldEditor.startPropagate(store, JFaceResources.TEXT_FONT);
2405
2406     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINKED_POSITION_COLOR, new RGB(0, 200, 100));
2407     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINK_COLOR, new RGB(0, 0, 255));
2408
2409     store.setDefault(PreferenceConstants.EDITOR_FOREGROUND_DEFAULT_COLOR, true);
2410
2411     store.setDefault(PreferenceConstants.EDITOR_BACKGROUND_DEFAULT_COLOR, true);
2412
2413     store.setDefault(PreferenceConstants.EDITOR_TAB_WIDTH, 4);
2414     store.setDefault(PreferenceConstants.EDITOR_SPACES_FOR_TABS, false);
2415
2416     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2417     store.setDefault(PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_BOLD, false);
2418
2419     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2420     store.setDefault(PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_BOLD, false);
2421
2422     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_TAG_COLOR, new RGB(255, 0, 128));
2423     store.setDefault(PreferenceConstants.EDITOR_PHP_TAG_BOLD, true);
2424
2425     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_KEYWORD_COLOR, new RGB(127, 0, 85));
2426     store.setDefault(PreferenceConstants.EDITOR_JAVA_KEYWORD_BOLD, true);
2427
2428     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_COLOR, new RGB(127, 127, 159));
2429     store.setDefault(PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_BOLD, false);
2430
2431     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_VARIABLE_COLOR, new RGB(127, 159, 191));
2432     store.setDefault(PreferenceConstants.EDITOR_PHP_VARIABLE_BOLD, false);
2433
2434     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_VARIABLE_DOLLAR_COLOR, new RGB(127, 159, 191));
2435     store.setDefault(PreferenceConstants.EDITOR_PHP_VARIABLE_DOLLAR_BOLD, false);
2436
2437     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_CONSTANT_COLOR, new RGB(127, 0, 85));
2438     store.setDefault(PreferenceConstants.EDITOR_PHP_CONSTANT_BOLD, false);
2439
2440     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_TYPE_COLOR, new RGB(127, 0, 85));
2441     store.setDefault(PreferenceConstants.EDITOR_PHP_TYPE_BOLD, false);
2442
2443     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR_DQ, PHPColorProvider.STRING_DQ);
2444     store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD_DQ, false);
2445
2446     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR_SQ, PHPColorProvider.STRING_SQ);
2447     store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD_SQ, true);
2448
2449     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_DEFAULT_COLOR, new RGB(0, 0, 0));
2450     store.setDefault(PreferenceConstants.EDITOR_JAVA_DEFAULT_BOLD, false);
2451
2452     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_KEYWORD_COLOR, new RGB(127, 159, 191));
2453     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_KEYWORD_BOLD, true);
2454
2455     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_TAG_COLOR, new RGB(127, 127, 159));
2456     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_TAG_BOLD, false);
2457
2458     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_LINKS_COLOR, new RGB(63, 63, 191));
2459     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_LINKS_BOLD, false);
2460
2461     PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_DEFAULT_COLOR, new RGB(63, 95, 191));
2462     store.setDefault(PreferenceConstants.EDITOR_JAVADOC_DEFAULT_BOLD, false);
2463
2464     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION, true);
2465     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_DELAY, 500);
2466
2467     store.setDefault(PreferenceConstants.CODEASSIST_AUTOINSERT, true);
2468     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_BACKGROUND, new RGB(254, 241, 233));
2469     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_FOREGROUND, new RGB(0, 0, 0));
2470     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND, new RGB(254, 241, 233));
2471     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_FOREGROUND, new RGB(0, 0, 0));
2472     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND, new RGB(255, 255, 0));
2473     PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND, new RGB(255, 0, 0));
2474     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA, "$>"); //$NON-NLS-1$
2475     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC, "@"); //$NON-NLS-1$
2476     store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML, "<&#"); //$NON-NLS-1$
2477     store.setDefault(PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS, true);
2478     store.setDefault(PreferenceConstants.CODEASSIST_CASE_SENSITIVITY, false);
2479     store.setDefault(PreferenceConstants.CODEASSIST_ORDER_PROPOSALS, false);
2480     store.setDefault(PreferenceConstants.CODEASSIST_ADDIMPORT, true);
2481     store.setDefault(PreferenceConstants.CODEASSIST_INSERT_COMPLETION, true);
2482     store.setDefault(PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES, false);
2483     store.setDefault(PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS, true);
2484     store.setDefault(PreferenceConstants.CODEASSIST_PREFIX_COMPLETION, false);
2485
2486     store.setDefault(PreferenceConstants.EDITOR_SMART_HOME_END, true);
2487     store.setDefault(PreferenceConstants.EDITOR_SUB_WORD_NAVIGATION, true);
2488     store.setDefault(PreferenceConstants.EDITOR_SMART_PASTE, true);
2489     store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_DQ_PHP, true);
2490     store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_SQ_PHP, true);
2491     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_PHP, true);
2492     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACES, true);
2493     store.setDefault(PreferenceConstants.EDITOR_CLOSE_JAVADOCS, true);
2494     store.setDefault(PreferenceConstants.EDITOR_WRAP_WORDS, false);
2495     store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS_DQ, true);
2496     store.setDefault(PreferenceConstants.EDITOR_ESCAPE_STRINGS_DQ, false);
2497     store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS_SQ, true);
2498     store.setDefault(PreferenceConstants.EDITOR_ESCAPE_STRINGS_SQ, false);
2499     store.setDefault(PreferenceConstants.EDITOR_ADD_JAVADOC_TAGS, true);
2500     store.setDefault(PreferenceConstants.EDITOR_FORMAT_JAVADOCS, false);
2501     store.setDefault(PreferenceConstants.EDITOR_DISABLE_OVERWRITE_MODE, false);
2502
2503     store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_HTML, true);
2504     store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_HTML, true);
2505
2506     //  store.setDefault(PreferenceConstants.EDITOR_DEFAULT_HOVER, JavaPlugin.ID_BESTMATCH_HOVER);
2507     store.setDefault(PreferenceConstants.EDITOR_NONE_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2508     //          store.setDefault(PreferenceConstants.EDITOR_CTRL_HOVER, JavaPlugin.ID_SOURCE_HOVER);
2509     store.setDefault(PreferenceConstants.EDITOR_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2510     store.setDefault(PreferenceConstants.EDITOR_CTRL_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2511     store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2512     store.setDefault(PreferenceConstants.EDITOR_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2513     store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2514
2515     String ctrl = Action.findModifierString(SWT.CTRL);
2516     store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS,
2517         "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + ctrl); //$NON-NLS-1$
2518     store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIER_MASKS,
2519         "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + SWT.CTRL); //$NON-NLS-1$
2520     store.setDefault(PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE, true);
2521
2522     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS, true);
2523     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER, ctrl);
2524     store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK, SWT.CTRL);
2525
2526     //  spell checking
2527     store.setDefault(PreferenceConstants.SPELLING_CHECK_SPELLING, false);
2528     store.setDefault(PreferenceConstants.SPELLING_LOCALE, SpellCheckEngine.getDefaultLocale().toString());
2529     store.setDefault(PreferenceConstants.SPELLING_IGNORE_DIGITS, true);
2530     store.setDefault(PreferenceConstants.SPELLING_IGNORE_MIXED, true);
2531     store.setDefault(PreferenceConstants.SPELLING_IGNORE_SENTENCE, true);
2532     store.setDefault(PreferenceConstants.SPELLING_IGNORE_UPPER, true);
2533     store.setDefault(PreferenceConstants.SPELLING_IGNORE_URLS, true);
2534     store.setDefault(PreferenceConstants.SPELLING_USER_DICTIONARY, ""); //$NON-NLS-1$
2535     store.setDefault(PreferenceConstants.SPELLING_PROPOSAL_THRESHOLD, 20);
2536     store.setDefault(PreferenceConstants.SPELLING_ENABLE_CONTENTASSIST, false);
2537
2538     // folding
2539     store.setDefault(PreferenceConstants.EDITOR_FOLDING_ENABLED, true);
2540     store.setDefault(PreferenceConstants.EDITOR_FOLDING_PROVIDER, "net.sourceforge.phpdt.ui.text.defaultFoldingProvider"); //$NON-NLS-1$
2541     store.setDefault(PreferenceConstants.EDITOR_FOLDING_JAVADOC, true);
2542     store.setDefault(PreferenceConstants.EDITOR_FOLDING_INNERTYPES, true);
2543     store.setDefault(PreferenceConstants.EDITOR_FOLDING_METHODS, false);
2544 //    store.setDefault(PreferenceConstants.EDITOR_FOLDING_IMPORTS, false);
2545     store.setDefault(PreferenceConstants.EDITOR_FOLDING_HEADERS, true);
2546
2547     store.setDefault(PreferenceConstants.EDITOR_SMART_BACKSPACE, true);
2548     store.setDefault(PreferenceConstants.EDITOR_P_RTRIM_ON_SAVE, false);
2549     // do more complicated stuff
2550     //  NewJavaProjectPreferencePage.initDefaults(store);
2551   }
2552
2553   /**
2554    * Returns the JDT-UI preference store.
2555    *
2556    * @return the JDT-UI preference store
2557    */
2558   public static IPreferenceStore getPreferenceStore() {
2559     return PHPeclipsePlugin.getDefault().getPreferenceStore();
2560   }
2561
2562   //    /**
2563   //     * Encodes a JRE library to be used in the named preference <code>NEWPROJECT_JRELIBRARY_LIST</code>.
2564   //     *
2565   //     * @param description a string value describing the JRE library. The description is used
2566   //     * to indentify the JDR library in the UI
2567   //     * @param entries an array of classpath entries to be encoded
2568   //     *
2569   //     * @return the encoded string.
2570   //    */
2571   //    public static String encodeJRELibrary(String description, IClasspathEntry[] entries) {
2572   //            return NewJavaProjectPreferencePage.encodeJRELibrary(description, entries);
2573   //    }
2574   //
2575   //    /**
2576   //     * Decodes an encoded JRE library and returns its description string.
2577   //     *
2578   //     * @return the description of an encoded JRE library
2579   //     *
2580   //     * @see #encodeJRELibrary(String, IClasspathEntry[])
2581   //     */
2582   //    public static String decodeJRELibraryDescription(String encodedLibrary) {
2583   //            return NewJavaProjectPreferencePage.decodeJRELibraryDescription(encodedLibrary);
2584   //    }
2585   //
2586   //    /**
2587   //     * Decodes an encoded JRE library and returns its classpath entries.
2588   //     *
2589   //     * @return the array of classpath entries of an encoded JRE library.
2590   //     *
2591   //     * @see #encodeJRELibrary(String, IClasspathEntry[])
2592   //     */
2593   //    public static IClasspathEntry[] decodeJRELibraryClasspathEntries(String encodedLibrary) {
2594   //            return NewJavaProjectPreferencePage.decodeJRELibraryClasspathEntries(encodedLibrary);
2595   //    }
2596   //
2597   //    /**
2598   //     * Returns the current configuration for the JRE to be used as default in new Java projects.
2599   //     * This is a convenience method to access the named preference <code>NEWPROJECT_JRELIBRARY_LIST
2600   //     * </code> with the index defined by <code> NEWPROJECT_JRELIBRARY_INDEX</code>.
2601   //     *
2602   //     * @return the current default set of classpath entries
2603   //     *
2604   //     * @see #NEWPROJECT_JRELIBRARY_LIST
2605   //     * @see #NEWPROJECT_JRELIBRARY_INDEX
2606   //     */
2607   //    public static IClasspathEntry[] getDefaultJRELibrary() {
2608   //            return NewJavaProjectPreferencePage.getDefaultJRELibrary();
2609   //    }
2610 }