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
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.ui;
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;
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;
29 //import org.phpeclipse.phpdt.internal.ui.JavaPlugin;
30 //import org.phpeclipse.phpdt.internal.ui.preferences.NewJavaProjectPreferencePage;
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.
38 public class PreferenceConstants {
40 private PreferenceConstants() {
44 * A named preference that controls return type rendering of methods in the UI.
46 * Value is of type <code>Boolean</code>: if <code>true</code> return types are rendered
49 public static final String APPEARANCE_METHOD_RETURNTYPE = "net.sourceforge.phpdt.ui.methodreturntype"; //$NON-NLS-1$
52 * A named preference that controls if override indicators are rendered in the UI.
54 * Value is of type <code>Boolean</code>: if <code>true</code> override indicators are rendered
57 public static final String APPEARANCE_OVERRIDE_INDICATOR = "net.sourceforge.phpdt.ui.overrideindicator"; //$NON-NLS-1$
60 * A named preference that defines the pattern used for package name compression.
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'.
66 public static final String APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW = "PackagesView.pkgNamePatternForPackagesView"; //$NON-NLS-1$
69 * A named preference that controls if package name compression is turned on or off.
71 * Value is of type <code>Boolean</code>.
74 * @see #APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW
76 public static final String APPEARANCE_COMPRESS_PACKAGE_NAMES = "net.sourceforge.phpdt.ui.compresspackagenames"; //$NON-NLS-1$
79 * A named preference that controls if empty inner packages are folded in the hierarchical mode of the package explorer.
81 * Value is of type <code>Boolean</code>: if <code>true</code> empty inner packages are folded.
86 public static final String APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER = "net.sourceforge.phpdt.ui.flatPackagesInPackageExplorer"; //$NON-NLS-1$
89 * A named preference that defines how member elements are ordered by the Java views using the <code>JavaElementSorter</code>.
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.
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>
107 public static final String APPEARANCE_MEMBER_SORT_ORDER = "outlinesortoption"; //$NON-NLS-1$
110 * A named preference that defines how member elements are ordered by visibility in the Java views using the
111 * <code>JavaElementSorter</code>.
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.
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>
125 public static final String APPEARANCE_VISIBILITY_SORT_ORDER = "net.sourceforge.phpdt.ui.visibility.order"; //$NON-NLS-1$
128 * A named preferences that controls if Java elements are also sorted by visibility.
130 * Value is of type <code>Boolean</code>.
135 public static final String APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER = "net.sourceforge.phpdt.ui.enable.visibility.order"; //$NON-NLS-1$
138 * A named preference that controls if prefix removal during setter/getter generation is turned on or off.
140 * Value is of type <code>Boolean</code>.
143 public static final String CODEGEN_USE_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.enable"; //$NON-NLS-1$
146 * A named preference that holds a list of prefixes to be removed from a local variable to compute setter and gettter names.
148 * Value is of type <code>String</code>: comma separated list of prefixed
151 * @see #CODEGEN_USE_GETTERSETTER_PREFIX
153 public static final String CODEGEN_GETTERSETTER_PREFIX = "net.sourceforge.phpdt.ui.gettersetter.prefix.list"; //$NON-NLS-1$
156 * A named preference that controls if suffix removal during setter/getter generation is turned on or off.
158 * Value is of type <code>Boolean</code>.
161 public static final String CODEGEN_USE_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.enable"; //$NON-NLS-1$
164 * A named preference that holds a list of suffixes to be removed from a local variable to compute setter and getter names.
166 * Value is of type <code>String</code>: comma separated list of suffixes
169 * @see #CODEGEN_USE_GETTERSETTER_SUFFIX
171 public static final String CODEGEN_GETTERSETTER_SUFFIX = "net.sourceforge.phpdt.ui.gettersetter.suffix.list"; //$NON-NLS-1$
173 * A named preference that controls whether the keyword "this" will be added
174 * automatically to field accesses in generated methods.
176 * Value is of type <code>Boolean</code>.
180 public static final String CODEGEN_KEYWORD_THIS= "org.eclipse.jdt.ui.keywordthis"; //$NON-NLS-1$
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.
186 * Value is of type <code>Boolean</code>.
190 public static final String CODEGEN_IS_FOR_GETTERS= "org.eclipse.jdt.ui.gettersetter.use.is"; //$NON-NLS-1$
194 * A named preference that defines the preferred variable names for exceptions in
197 * Value is of type <code>String</code>.
201 public static final String CODEGEN_EXCEPTION_VAR_NAME= "org.eclipse.jdt.ui.exception.name"; //$NON-NLS-1$
204 * A named preference that controls if comment stubs will be added automatically to newly created types and methods.
206 * Value is of type <code>Boolean</code>.
211 public static final String CODEGEN_ADD_COMMENTS = "net.sourceforge.phpdt.ui.phpdoc"; //$NON-NLS-1$
214 * A name preference that controls if a JavaDoc stub gets added to newly created types and methods.
216 * Value is of type <code>Boolean</code>.
219 * @deprecated Use CODEGEN_ADD_COMMENTS instead (Name is more precise).
221 // public static final String CODEGEN__JAVADOC_STUBS = CODEGEN_ADD_COMMENTS; //$NON-NLS-1$
223 * A named preference that controls if a non-phpdoc comment gets added to methods generated via the "Override Methods" operation.
225 * Value is of type <code>Boolean</code>.
228 public static final String CODEGEN__NON_JAVADOC_COMMENTS = "net.sourceforge.phpdt.ui.seecomments"; //$NON-NLS-1$
231 * A named preference that controls if a file comment gets added to newly created files.
233 * Value is of type <code>Boolean</code>.
236 public static final String CODEGEN__FILE_COMMENTS = "net.sourceforge.phpdt.ui.filecomments"; //$NON-NLS-1$
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.
242 * Value is of type <code>String</code>: semicolon separated list of package names
245 // public static final String ORGIMPORTS_IMPORTORDER = "net.sourceforge.phpdt.ui.importorder"; //$NON-NLS-1$
248 * A named preference that specifies the number of imports added before a star-import declaration is used.
250 * Value is of type <code>Int</code>: positive value specifing the number of non star-import is used
253 public static final String ORGIMPORTS_ONDEMANDTHRESHOLD = "net.sourceforge.phpdt.ui.ondemandthreshold"; //$NON-NLS-1$
256 * A named preferences that controls if types that start with a lower case letters get added by the "Organize Import" operation.
258 * Value is of type <code>Boolean</code>.
261 public static final String ORGIMPORTS_IGNORELOWERCASE = "net.sourceforge.phpdt.ui.ignorelowercasenames"; //$NON-NLS-1$
264 * A named preference that speficies whether children of a compilation unit are shown in the package explorer.
266 * Value is of type <code>Boolean</code>.
269 public static final String SHOW_CU_CHILDREN = "net.sourceforge.phpdt.ui.packages.cuchildren"; //$NON-NLS-1$
272 * A named preference that controls whether the package explorer's selection is linked to the active editor.
274 * Value is of type <code>Boolean</code>.
277 public static final String LINK_PACKAGES_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktoeditor"; //$NON-NLS-1$
280 * A named preference that controls whether the hierarchy view's selection is linked to the active editor.
282 * Value is of type <code>Boolean</code>.
285 public static final String LINK_TYPEHIERARCHY_TO_EDITOR = "net.sourceforge.phpdt.ui.packages.linktypehierarchytoeditor"; //$NON-NLS-1$
288 * A named preference that controls whether the browsing view's selection is linked to the active editor.
290 * Value is of type <code>Boolean</code>.
295 public static final String LINK_BROWSING_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
298 * A named preference that controls whether new projects are generated using source and output folder.
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.
304 public static final String SRCBIN_FOLDERS_IN_NEWPROJ = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersInNewProjects"; //$NON-NLS-1$
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>.
310 * Value is of type <code>String</code>.
313 * @see #SRCBIN_FOLDERS_IN_NEWPROJ
315 public static final String SRCBIN_SRCNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersSrcName"; //$NON-NLS-1$
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>.
321 * Value is of type <code>String</code>.
324 * @see #SRCBIN_FOLDERS_IN_NEWPROJ
326 public static final String SRCBIN_BINNAME = "net.sourceforge.phpdt.ui.wizards.srcBinFoldersBinName"; //$NON-NLS-1$
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
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.
341 * @see #NEWPROJECT_JRELIBRARY_INDEX
342 * @see #encodeJRELibrary(String, IClasspathEntry[])
343 * @see #decodeJRELibraryDescription(String)
344 * @see #decodeJRELibraryClasspathEntries(String)
346 public static final String NEWPROJECT_JRELIBRARY_LIST = "net.sourceforge.phpdt.ui.wizards.jre.list"; //$NON-NLS-1$
349 * A named preferences that specifies the current active JRE library.
351 * Value is of type <code>Int</code>: an index into the list of possible JRE libraries.
354 * @see #NEWPROJECT_JRELIBRARY_LIST
356 public static final String NEWPROJECT_JRELIBRARY_INDEX = "net.sourceforge.phpdt.ui.wizards.jre.index"; //$NON-NLS-1$
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.
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>.
367 * @see #OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE
368 * @see #OPEN_TYPE_HIERARCHY_IN_VIEW_PART
370 public static final String OPEN_TYPE_HIERARCHY = "net.sourceforge.phpdt.ui.openTypeHierarchy"; //$NON-NLS-1$
373 * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
375 * @see #OPEN_TYPE_HIERARCHY
377 public static final String OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE = "perspective"; //$NON-NLS-1$
380 * A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
382 * @see #OPEN_TYPE_HIERARCHY
384 public static final String OPEN_TYPE_HIERARCHY_IN_VIEW_PART = "viewPart"; //$NON-NLS-1$
387 * A named preference that controls the behaviour when double clicking on a container in the packages view.
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>.
394 * @see #DOUBLE_CLICK_EXPANDS
395 * @see #DOUBLE_CLICK_GOES_INTO
397 public static final String DOUBLE_CLICK = "packageview.doubleclick"; //$NON-NLS-1$
400 * A string value used by the named preference <code>DOUBLE_CLICK</code>.
404 public static final String DOUBLE_CLICK_GOES_INTO = "packageview.gointo"; //$NON-NLS-1$
407 * A string value used by the named preference <code>DOUBLE_CLICK</code>.
411 public static final String DOUBLE_CLICK_EXPANDS = "packageview.doubleclick.expands"; //$NON-NLS-1$
414 * A named preference that controls whether Java views update their presentation while editing or when saving the content of an
417 * Value is of type <code>String</code>: possible values are <code>
418 * UPDATE_ON_SAVE</code> or <code>
419 * UPDATE_WHILE_EDITING</code>.
422 * @see #UPDATE_ON_SAVE
423 * @see #UPDATE_WHILE_EDITING
425 public static final String UPDATE_JAVA_VIEWS = "JavaUI.update"; //$NON-NLS-1$
428 * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
430 * @see #UPDATE_JAVA_VIEWS
432 public static final String UPDATE_ON_SAVE = "JavaUI.update.onSave"; //$NON-NLS-1$
435 * A string value used by the named preference <code>UPDATE_JAVA_VIEWS</code>
437 * @see #UPDATE_JAVA_VIEWS
439 public static final String UPDATE_WHILE_EDITING = "JavaUI.update.whileEditing"; //$NON-NLS-1$
442 * A named preference that holds the path of the Javadoc command used by the Javadoc creation wizard.
444 * Value is of type <code>String</code>.
447 public static final String JAVADOC_COMMAND = "command"; //$NON-NLS-1$
450 * A named preference that defines whether hint to make hover sticky should be shown.
455 public static final String EDITOR_SHOW_TEXT_HOVER_AFFORDANCE = "PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE"; //$NON-NLS-1$
458 * A named preference that defines the key for the hover modifiers.
463 public static final String EDITOR_TEXT_HOVER_MODIFIERS = "hoverModifiers"; //$NON-NLS-1$
466 * The id of the best match hover contributed for extension point <code>javaEditorTextHovers</code>.
470 public static String ID_BESTMATCH_HOVER = "net.sourceforge.phpdt.ui.BestMatchHover"; //$NON-NLS-1$
473 * The id of the source code hover contributed for extension point <code>javaEditorTextHovers</code>.
477 public static String ID_SOURCE_HOVER = "net.sourceforge.phpdt.ui.JavaSourceHover"; //$NON-NLS-1$
480 * The id of the problem hover contributed for extension point <code>javaEditorTextHovers</code>.
484 public static String ID_PROBLEM_HOVER = "net.sourceforge.phpdt.ui.ProblemHover"; //$NON-NLS-1$
487 * A named preference that controls whether bracket matching highlighting is turned on or off.
489 * Value is of type <code>Boolean</code>.
492 public final static String EDITOR_MATCHING_BRACKETS = "matchingBrackets"; //$NON-NLS-1$
495 * A named preference that holds the color used to highlight matching brackets.
497 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
500 * @see org.eclipse.jface.resource.StringConverter
501 * @see org.eclipse.jface.preference.PreferenceConverter
503 public final static String EDITOR_MATCHING_BRACKETS_COLOR = "matchingBracketsColor"; //$NON-NLS-1$
506 * A named preference that controls whether the current line highlighting is turned on or off.
508 * Value is of type <code>Boolean</code>.
511 public final static String EDITOR_CURRENT_LINE = "currentLine"; //$NON-NLS-1$
514 * A named preference that holds the color used to highlight the current line.
516 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
519 * @see org.eclipse.jface.resource.StringConverter
520 * @see org.eclipse.jface.preference.PreferenceConverter
522 public final static String EDITOR_CURRENT_LINE_COLOR = "currentLineColor"; //$NON-NLS-1$
525 * A named preference that controls whether the print margin is turned on or off.
527 * Value is of type <code>Boolean</code>.
530 public final static String EDITOR_PRINT_MARGIN = "printMargin"; //$NON-NLS-1$
533 * A named preference that holds the color used to render the print margin.
535 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
538 * @see org.eclipse.jface.resource.StringConverter
539 * @see org.eclipse.jface.preference.PreferenceConverter
541 public final static String EDITOR_PRINT_MARGIN_COLOR = "printMarginColor"; //$NON-NLS-1$
544 * Print margin column. Int value.
546 public final static String EDITOR_PRINT_MARGIN_COLUMN = "printMarginColumn"; //$NON-NLS-1$
549 * A named preference that holds the color used for the find/replace scope.
551 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
554 * @see org.eclipse.jface.resource.StringConverter
555 * @see org.eclipse.jface.preference.PreferenceConverter
557 public final static String EDITOR_FIND_SCOPE_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FIND_SCOPE;
560 * A named preference that specifies if the editor uses spaces for tabs.
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.
566 public final static String EDITOR_SPACES_FOR_TABS = "spacesForTabs"; //$NON-NLS-1$
569 * A named preference that holds the number of spaces used per tab in the editor.
571 * Value is of type <code>Int</code>: positive int value specifying the number of spaces per tab.
574 public final static String EDITOR_TAB_WIDTH = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_TAB_WIDTH; //"net.sourceforge.phpdt.ui.editor.tab.width";
579 * A named preference that controls whether the outline view selection should stay in sync with with the element at the current
582 * Value is of type <code>Boolean</code>.
587 public final static String EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE = "JavaEditor.SyncOutlineOnCursorMove"; //$NON-NLS-1$
590 * A named preference that controls if correction indicators are shown in the UI.
592 * Value is of type <code>Boolean</code>.
595 public final static String EDITOR_CORRECTION_INDICATION = "JavaEditor.ShowTemporaryProblem"; //$NON-NLS-1$
598 * A named preference that controls whether the editor shows problem indicators in text (squiggly lines).
600 * Value is of type <code>Boolean</code>.
603 // public final static String EDITOR_PROBLEM_INDICATION = "problemIndication"; //$NON-NLS-1$
605 * A named preference that holds the color used to render problem indicators.
607 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
610 * @see #EDITOR_PROBLEM_INDICATION
611 * @see org.eclipse.jface.resource.StringConverter
612 * @see org.eclipse.jface.preference.PreferenceConverter
614 // public final static String EDITOR_PROBLEM_INDICATION_COLOR = "problemIndicationColor"; //$NON-NLS-1$
616 * PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR; A named preference that controls whether the editor shows warning
617 * indicators in text (squiggly lines).
619 * Value is of type <code>Boolean</code>.
622 // public final static String EDITOR_WARNING_INDICATION = "warningIndication"; //$NON-NLS-1$
624 * A named preference that holds the color used to render warning indicators.
626 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
629 * @see #EDITOR_WARNING_INDICATION
630 * @see org.eclipse.jface.resource.StringConverter
631 * @see org.eclipse.jface.preference.PreferenceConverter
633 // public final static String EDITOR_WARNING_INDICATION_COLOR = "warningIndicationColor"; //$NON-NLS-1$
635 * A named preference that controls whether the editor shows task indicators in text (squiggly lines).
637 * Value is of type <code>Boolean</code>.
640 public final static String EDITOR_TASK_INDICATION = "taskIndication"; //$NON-NLS-1$
643 * A named preference that holds the color used to render task indicators.
645 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
648 * @see #EDITOR_TASK_INDICATION
649 * @see org.eclipse.jface.resource.StringConverter
650 * @see org.eclipse.jface.preference.PreferenceConverter
652 public final static String EDITOR_TASK_INDICATION_COLOR = "taskIndicationColor"; //$NON-NLS-1$
655 * A named preference that controls whether the editor shows bookmark indicators in text (squiggly lines).
657 * Value is of type <code>Boolean</code>.
662 public final static String EDITOR_BOOKMARK_INDICATION = "bookmarkIndication"; //$NON-NLS-1$
665 * A named preference that holds the color used to render bookmark indicators.
667 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
670 * @see #EDITOR_BOOKMARK_INDICATION
671 * @see org.eclipse.jface.resource.StringConverter
672 * @see org.eclipse.jface.preference.PreferenceConverter
675 public final static String EDITOR_BOOKMARK_INDICATION_COLOR = "bookmarkIndicationColor"; //$NON-NLS-1$
678 * A named preference that controls whether the editor shows search indicators in text (squiggly lines).
680 * Value is of type <code>Boolean</code>.
685 public final static String EDITOR_SEARCH_RESULT_INDICATION = "searchResultIndication"; //$NON-NLS-1$
688 * A named preference that holds the color used to render search indicators.
690 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
693 * @see #EDITOR_SEARCH_RESULT_INDICATION
694 * @see org.eclipse.jface.resource.StringConverter
695 * @see org.eclipse.jface.preference.PreferenceConverter
698 public final static String EDITOR_SEARCH_RESULT_INDICATION_COLOR = "searchResultIndicationColor"; //$NON-NLS-1$
701 * A named preference that controls whether the editor shows unknown indicators in text (squiggly lines).
703 * Value is of type <code>Boolean</code>.
708 public final static String EDITOR_UNKNOWN_INDICATION = "othersIndication"; //$NON-NLS-1$
711 * A named preference that holds the color used to render unknown indicators.
713 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
716 * @see #EDITOR_UNKNOWN_INDICATION
717 * @see org.eclipse.jface.resource.StringConverter
718 * @see org.eclipse.jface.preference.PreferenceConverter
721 public final static String EDITOR_UNKNOWN_INDICATION_COLOR = "othersIndicationColor"; //$NON-NLS-1$
724 * A named preference that controls whether the overview ruler shows error indicators.
726 * Value is of type <code>Boolean</code>.
731 public final static String EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER = "errorIndicationInOverviewRuler"; //$NON-NLS-1$
734 * A named preference that controls whether the overview ruler shows warning indicators.
736 * Value is of type <code>Boolean</code>.
741 public final static String EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER = "warningIndicationInOverviewRuler"; //$NON-NLS-1$
744 * A named preference that controls whether the overview ruler shows task indicators.
746 * Value is of type <code>Boolean</code>.
751 public final static String EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER = "taskIndicationInOverviewRuler"; //$NON-NLS-1$
754 * A named preference that controls whether the overview ruler shows bookmark indicators.
756 * Value is of type <code>Boolean</code>.
761 public final static String EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER = "bookmarkIndicationInOverviewRuler"; //$NON-NLS-1$
764 * A named preference that controls whether the overview ruler shows search result indicators.
766 * Value is of type <code>Boolean</code>.
771 public final static String EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER = "searchResultIndicationInOverviewRuler"; //$NON-NLS-1$
774 * A named preference that controls whether the overview ruler shows unknown indicators.
776 * Value is of type <code>Boolean</code>.
781 public final static String EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER = "othersIndicationInOverviewRuler"; //$NON-NLS-1$
784 * A named preference that controls whether the 'close strings' feature is enabled in PHP mode
786 * Value is of type <code>Boolean</code>.
789 public final static String EDITOR_CLOSE_STRINGS_DQ_PHP = "closeStringsPHPDQ"; //$NON-NLS-1$
792 * A named preference that controls whether the 'close strings' feature is enabled in PHP mode
794 * Value is of type <code>Boolean</code>.
797 public final static String EDITOR_CLOSE_STRINGS_SQ_PHP = "closeStringsPHPSQ"; //$NON-NLS-1$
800 * A named preference that controls whether the 'close brackets' feature is enabled in PHP mode
802 * Value is of type <code>Boolean</code>.
807 public final static String EDITOR_CLOSE_BRACKETS_PHP = "closeBracketsPHP"; //$NON-NLS-1$
810 * A named preference that controls whether the 'wrap words' feature is enabled.
812 * Value is of type <code>Boolean</code>.
817 public final static String EDITOR_WRAP_WORDS = "wrapWords"; //$NON-NLS-1$
820 * A named preference that controls whether the 'wrap strings' feature is enabled.
822 * Value is of type <code>Boolean</code>.
827 public final static String EDITOR_WRAP_STRINGS_DQ = "wrapStringsDQ"; //$NON-NLS-1$
830 * A named preference that controls whether the 'escape strings' feature is enabled.
832 * Value is of type <code>Boolean</code>.
837 public final static String EDITOR_ESCAPE_STRINGS_DQ = "escapeStringsDQ"; //$NON-NLS-1$
840 * A named preference that controls whether the 'wrap strings' feature is enabled.
842 * Value is of type <code>Boolean</code>.
847 public final static String EDITOR_WRAP_STRINGS_SQ = "wrapStringsDQ"; //$NON-NLS-1$
850 * A named preference that controls whether the 'escape strings' feature is enabled.
852 * Value is of type <code>Boolean</code>.
857 public final static String EDITOR_ESCAPE_STRINGS_SQ = "escapeStringsSQ"; //$NON-NLS-1$
860 * A named preference that controls if content assist inserts the common prefix of all proposals before presenting choices.
862 * Value is of type <code>Boolean</code>.
867 public final static String CODEASSIST_PREFIX_COMPLETION = "content_assist_prefix_completion"; //$NON-NLS-1$
870 * A named preference that controls whether the 'close braces' feature is enabled.
872 * Value is of type <code>Boolean</code>.
877 public final static String EDITOR_CLOSE_BRACES = "closeBraces"; //$NON-NLS-1$
880 * A named preference that controls whether the 'close php docs' feature is enabled.
882 * Value is of type <code>Boolean</code>.
887 public final static String EDITOR_CLOSE_JAVADOCS = "closeJavaDocs"; //$NON-NLS-1$
890 * A named preference that controls whether the 'add JavaDoc tags' feature is enabled.
892 * Value is of type <code>Boolean</code>.
897 public final static String EDITOR_ADD_JAVADOC_TAGS = "addJavaDocTags"; //$NON-NLS-1$
900 * A named preference that controls whether the 'format Javadoc tags' feature is enabled.
902 * Value is of type <code>Boolean</code>.
907 public final static String EDITOR_FORMAT_JAVADOCS = "formatJavaDocs"; //$NON-NLS-1$
910 * A named preference that controls whether the 'smart paste' feature is enabled.
912 * Value is of type <code>Boolean</code>.
917 public final static String EDITOR_SMART_PASTE = "smartPaste"; //$NON-NLS-1$
920 * A named preference that controls whether the 'close strings' feature is enabled in HTML mode
922 * Value is of type <code>Boolean</code>.
927 public final static String EDITOR_CLOSE_STRINGS_HTML = "closeStringsHTML"; //$NON-NLS-1$
930 * A named preference that controls whether the 'close brackets' feature is enabled in HTML mode
932 * Value is of type <code>Boolean</code>.
937 public final static String EDITOR_CLOSE_BRACKETS_HTML = "closeBracketsHTML"; //$NON-NLS-1$
940 * A named preference that controls whether the 'smart home-end' feature is enabled.
942 * Value is of type <code>Boolean</code>.
947 public final static String EDITOR_SMART_HOME_END = AbstractTextEditor.PREFERENCE_NAVIGATION_SMART_HOME_END;
950 * A named preference that controls whether the 'sub-word navigation' feature is enabled.
952 * Value is of type <code>Boolean</code>.
957 public final static String EDITOR_SUB_WORD_NAVIGATION = "subWordNavigation"; //$NON-NLS-1$
960 * A named preference that controls if temporary problems are evaluated and shown in the UI.
962 * Value is of type <code>Boolean</code>.
965 public final static String EDITOR_EVALUTE_TEMPORARY_PROBLEMS = "handleTemporaryProblems"; //$NON-NLS-1$
968 * A named preference that controls if the overview ruler is shown in the UI.
970 * Value is of type <code>Boolean</code>.
973 public final static String EDITOR_OVERVIEW_RULER = "overviewRuler"; //$NON-NLS-1$
976 * A named preference that controls if the line number ruler is shown in the UI.
978 * Value is of type <code>Boolean</code>.
981 public final static String EDITOR_LINE_NUMBER_RULER = "lineNumberRuler"; //$NON-NLS-1$
984 * A named preference that holds the color used to render line numbers inside the line number ruler.
986 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
989 * @see org.eclipse.jface.resource.StringConverter
990 * @see org.eclipse.jface.preference.PreferenceConverter
991 * @see #EDITOR_LINE_NUMBER_RULER
993 public final static String EDITOR_LINE_NUMBER_RULER_COLOR = "lineNumberColor"; //$NON-NLS-1$
996 * A named preference that holds the color used to render linked positions inside code templates.
998 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1001 * @see org.eclipse.jface.resource.StringConverter
1002 * @see org.eclipse.jface.preference.PreferenceConverter
1004 public final static String EDITOR_LINKED_POSITION_COLOR = "linkedPositionColor"; //$NON-NLS-1$
1007 * A named preference that holds the color used as the text foreground.
1009 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1012 * @see org.eclipse.jface.resource.StringConverter
1013 * @see org.eclipse.jface.preference.PreferenceConverter
1015 public final static String EDITOR_FOREGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND;
1018 * A named preference that describes if the system default foreground color is used as the text foreground.
1020 * Value is of type <code>Boolean</code>.
1023 public final static String EDITOR_FOREGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_FOREGROUND_SYSTEM_DEFAULT;
1026 * A named preference that holds the color used as the text background.
1028 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1031 * @see org.eclipse.jface.resource.StringConverter
1032 * @see org.eclipse.jface.preference.PreferenceConverter
1034 public final static String EDITOR_BACKGROUND_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND;
1037 * A named preference that describes if the system default background color is used as the text foreground.
1039 * Value is of type <code>Boolean</code>.
1042 public final static String EDITOR_BACKGROUND_DEFAULT_COLOR = AbstractTextEditor.PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT;
1045 * Preference key suffix for bold text style preference keys.
1047 public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
1050 * Preference key suffix for bold text style preference keys.
1052 public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$
1055 * A named preference that holds the color used to render multi line comments.
1057 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1060 * @see org.eclipse.jface.resource.StringConverter
1061 * @see org.eclipse.jface.preference.PreferenceConverter
1063 public final static String EDITOR_MULTI_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_MULTILINE_COMMENT;
1066 * The symbolic font name for the Java editor text font (value <code>"net.sourceforge.phpdt.ui.editors.textfont"</code>).
1070 public final static String EDITOR_TEXT_FONT = "net.sourceforge.phpdt.ui.editors.textfont"; //$NON-NLS-1$
1073 * A named preference that controls whether multi line comments are rendered in bold.
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.
1079 public final static String EDITOR_MULTI_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_MULTILINE_COMMENT + EDITOR_BOLD_SUFFIX;
1082 * A named preference that holds the color used to render single line comments.
1084 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1087 * @see org.eclipse.jface.resource.StringConverter
1088 * @see org.eclipse.jface.preference.PreferenceConverter
1090 public final static String EDITOR_SINGLE_LINE_COMMENT_COLOR = IPreferenceConstants.PHP_SINGLELINE_COMMENT;
1093 * A named preference that controls whether sinle line comments are rendered in bold.
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.
1099 public final static String EDITOR_SINGLE_LINE_COMMENT_BOLD = IPreferenceConstants.PHP_SINGLELINE_COMMENT + EDITOR_BOLD_SUFFIX;
1102 * A named preference that holds the color used to render operators and brackets.
1104 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1107 * @see org.eclipse.jface.resource.StringConverter
1108 * @see org.eclipse.jface.preference.PreferenceConverter
1111 public final static String EDITOR_PHP_OPERATOR_COLOR = IPreferenceConstants.PHP_OPERATOR;
1114 * A named preference that controls whether operators and brackets are rendered in bold.
1116 * Value is of type <code>Boolean</code>.
1121 public final static String EDITOR_PHP_OPERATOR_BOLD = IPreferenceConstants.PHP_OPERATOR + EDITOR_BOLD_SUFFIX;
1124 * A named preference that controls whether operators and brackets are rendered in italic.
1126 * Value is of type <code>Boolean</code>.
1131 public final static String EDITOR_PHP_OPERATOR_ITALIC = IPreferenceConstants.PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
1134 * A named preference that holds the color used to render operators and brackets.
1136 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1139 * @see org.eclipse.jface.resource.StringConverter
1140 * @see org.eclipse.jface.preference.PreferenceConverter
1143 public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR = IPreferenceConstants.PHP_BRACE_OPERATOR;
1146 * A named preference that controls whether operators and brackets are rendered in bold.
1148 * Value is of type <code>Boolean</code>.
1153 public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = IPreferenceConstants.PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
1156 * A named preference that controls whether operators and brackets are rendered in italic.
1158 * Value is of type <code>Boolean</code>.
1163 public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = IPreferenceConstants.PHP_BRACE_OPERATOR + EDITOR_ITALIC_SUFFIX;
1166 * A named preference that holds the color used to render the 'return' keyword.
1168 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1171 * @see org.eclipse.jface.resource.StringConverter
1172 * @see org.eclipse.jface.preference.PreferenceConverter
1175 public final static String EDITOR_PHP_KEYWORD_RETURN_COLOR = IPreferenceConstants.PHP_KEYWORD_RETURN;
1178 * A named preference that controls whether 'return' keyword is rendered in bold.
1180 * Value is of type <code>Boolean</code>.
1185 public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = IPreferenceConstants.PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX;
1188 * A named preference that controls whether 'return' keyword is rendered in italic.
1190 * Value is of type <code>Boolean</code>.
1195 public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = IPreferenceConstants.PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX;
1198 * A named preference that holds the color used to render php start and stop tags.
1200 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1203 * @see org.eclipse.jface.resource.StringConverter
1204 * @see org.eclipse.jface.preference.PreferenceConverter
1206 public final static String EDITOR_PHP_TAG_COLOR = IPreferenceConstants.PHP_TAG;
1209 * A named preference that controls whether php start and stop tags are rendered in bold.
1211 * Value is of type <code>Boolean</code>.
1214 public final static String EDITOR_PHP_TAG_BOLD = IPreferenceConstants.PHP_TAG + EDITOR_BOLD_SUFFIX;
1217 * A named preference that holds the color used to render php keywords.
1219 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1222 * @see org.eclipse.jface.resource.StringConverter
1223 * @see org.eclipse.jface.preference.PreferenceConverter
1225 public final static String EDITOR_JAVA_KEYWORD_COLOR = IPreferenceConstants.PHP_KEYWORD;
1228 * A named preference that controls whether keywords are rendered in bold.
1230 * Value is of type <code>Boolean</code>.
1233 public final static String EDITOR_JAVA_KEYWORD_BOLD = IPreferenceConstants.PHP_KEYWORD + EDITOR_BOLD_SUFFIX;
1236 * A named preference that holds the color used to render predefined php function names.
1238 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1241 * @see org.eclipse.jface.resource.StringConverter
1242 * @see org.eclipse.jface.preference.PreferenceConverter
1244 public final static String EDITOR_PHP_FUNCTIONNAME_COLOR = IPreferenceConstants.PHP_FUNCTIONNAME;
1247 * A named preference that controls whether function names are rendered in bold.
1249 * Value is of type <code>Boolean</code>.
1252 public final static String EDITOR_PHP_FUNCTIONNAME_BOLD = IPreferenceConstants.PHP_FUNCTIONNAME + EDITOR_BOLD_SUFFIX;
1255 * A named preference that holds the color used to render php variables.
1257 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1260 * @see org.eclipse.jface.resource.StringConverter
1261 * @see org.eclipse.jface.preference.PreferenceConverter
1263 public final static String EDITOR_PHP_VARIABLE_COLOR = IPreferenceConstants.PHP_VARIABLE;
1266 * A named preference that controls whether variables are rendered in bold.
1268 * Value is of type <code>Boolean</code>.
1271 public final static String EDITOR_PHP_VARIABLE_BOLD = IPreferenceConstants.PHP_VARIABLE + EDITOR_BOLD_SUFFIX;
1274 * A named preference that holds the color used to render php constants.
1276 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1279 * @see org.eclipse.jface.resource.StringConverter
1280 * @see org.eclipse.jface.preference.PreferenceConverter
1282 public final static String EDITOR_PHP_CONSTANT_COLOR = IPreferenceConstants.PHP_CONSTANT;
1285 * A named preference that controls whether constants are rendered in bold.
1287 * Value is of type <code>Boolean</code>.
1290 public final static String EDITOR_PHP_CONSTANT_BOLD = IPreferenceConstants.PHP_CONSTANT + EDITOR_BOLD_SUFFIX;
1293 * A named preference that holds the color used to render php types.
1295 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1298 * @see org.eclipse.jface.resource.StringConverter
1299 * @see org.eclipse.jface.preference.PreferenceConverter
1301 public final static String EDITOR_PHP_TYPE_COLOR = IPreferenceConstants.PHP_TYPE;
1304 * A named preference that controls whether types are rendered in bold.
1306 * Value is of type <code>Boolean</code>.
1309 public final static String EDITOR_PHP_TYPE_BOLD = IPreferenceConstants.PHP_TYPE + EDITOR_BOLD_SUFFIX;
1312 * A named preference that holds the color used to render string constants.
1314 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1317 * @see org.eclipse.jface.resource.StringConverter
1318 * @see org.eclipse.jface.preference.PreferenceConverter
1320 public final static String EDITOR_STRING_COLOR_DQ = IPreferenceConstants.PHP_STRING_DQ;
1323 * A named preference that controls whether string constants are rendered in bold.
1325 * Value is of type <code>Boolean</code>.
1328 public final static String EDITOR_STRING_BOLD_DQ = IPreferenceConstants.PHP_STRING_DQ + EDITOR_BOLD_SUFFIX;
1330 public final static String EDITOR_STRING_COLOR_SQ = IPreferenceConstants.PHP_STRING_SQ;
1333 * A named preference that controls whether string constants are rendered in bold.
1335 * Value is of type <code>Boolean</code>.
1338 public final static String EDITOR_STRING_BOLD_SQ = IPreferenceConstants.PHP_STRING_SQ + EDITOR_BOLD_SUFFIX;
1341 * A named preference that holds the color used to render php default text.
1343 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1346 * @see org.eclipse.jface.resource.StringConverter
1347 * @see org.eclipse.jface.preference.PreferenceConverter
1349 public final static String EDITOR_JAVA_DEFAULT_COLOR = IPreferenceConstants.PHP_DEFAULT;
1352 * A named preference that controls whether Java default text is rendered in bold.
1354 * Value is of type <code>Boolean</code>.
1357 public final static String EDITOR_JAVA_DEFAULT_BOLD = IPreferenceConstants.PHP_DEFAULT + EDITOR_BOLD_SUFFIX;
1360 * A named preference that holds the color used to render task tags.
1362 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1365 * @see org.eclipse.jface.resource.StringConverter
1366 * @see org.eclipse.jface.preference.PreferenceConverter
1369 public final static String EDITOR_TASK_TAG_COLOR = IPreferenceConstants.TASK_TAG;
1372 * A named preference that controls whether task tags are rendered in bold.
1374 * Value is of type <code>Boolean</code>.
1379 public final static String EDITOR_TASK_TAG_BOLD = IPreferenceConstants.TASK_TAG + EDITOR_BOLD_SUFFIX;
1382 * A named preference that holds the color used to render phpdoc keywords.
1384 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1387 * @see org.eclipse.jface.resource.StringConverter
1388 * @see org.eclipse.jface.preference.PreferenceConverter
1390 public final static String EDITOR_JAVADOC_KEYWORD_COLOR = IPreferenceConstants.PHPDOC_KEYWORD;
1393 * A named preference that controls whether phpdoc keywords are rendered in bold.
1395 * Value is of type <code>Boolean</code>.
1398 public final static String EDITOR_JAVADOC_KEYWORD_BOLD = IPreferenceConstants.PHPDOC_KEYWORD + EDITOR_BOLD_SUFFIX;
1401 * A named preference that holds the color used to render phpdoc tags.
1403 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1406 * @see org.eclipse.jface.resource.StringConverter
1407 * @see org.eclipse.jface.preference.PreferenceConverter
1409 public final static String EDITOR_JAVADOC_TAG_COLOR = IPreferenceConstants.PHPDOC_TAG;
1412 * A named preference that controls whether phpdoc tags are rendered in bold.
1414 * Value is of type <code>Boolean</code>.
1417 public final static String EDITOR_JAVADOC_TAG_BOLD = IPreferenceConstants.PHPDOC_TAG + EDITOR_BOLD_SUFFIX;
1420 * A named preference that holds the color used to render phpdoc links.
1422 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1425 * @see org.eclipse.jface.resource.StringConverter
1426 * @see org.eclipse.jface.preference.PreferenceConverter
1428 public final static String EDITOR_JAVADOC_LINKS_COLOR = IPreferenceConstants.PHPDOC_LINK;
1431 * A named preference that controls whether phpdoc links are rendered in bold.
1433 * Value is of type <code>Boolean</code>.
1436 public final static String EDITOR_JAVADOC_LINKS_BOLD = IPreferenceConstants.PHPDOC_LINK + EDITOR_BOLD_SUFFIX;
1439 * A named preference that holds the color used to render phpdoc default text.
1441 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1444 * @see org.eclipse.jface.resource.StringConverter
1445 * @see org.eclipse.jface.preference.PreferenceConverter
1447 public final static String EDITOR_JAVADOC_DEFAULT_COLOR = IPreferenceConstants.PHPDOC_DEFAULT;
1450 * A named preference that controls whether phpdoc default text is rendered in bold.
1452 * Value is of type <code>Boolean</code>.
1455 public final static String EDITOR_JAVADOC_DEFAULT_BOLD = IPreferenceConstants.PHPDOC_DEFAULT + EDITOR_BOLD_SUFFIX;
1458 * A named preference that holds the color used for 'linked-mode' underline.
1460 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
1463 * @see org.eclipse.jface.resource.StringConverter
1464 * @see org.eclipse.jface.preference.PreferenceConverter
1467 public final static String EDITOR_LINK_COLOR = "linkColor"; //$NON-NLS-1$
1470 * A named preference that controls whether hover tooltips in the editor are turned on or off.
1472 * Value is of type <code>Boolean</code>.
1475 public static final String EDITOR_SHOW_HOVER = "net.sourceforge.phpdt.ui.editor.showHover"; //$NON-NLS-1$
1478 * A named preference that defines the hover shown when no control key is pressed.
1480 * Value is of type <code>String</code>: possible values are <code>
1481 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1482 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1485 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1486 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1490 public static final String EDITOR_NONE_HOVER = "noneHover"; //$NON-NLS-1$
1493 * A named preference that defines the hover shown when the <code>CTRL</code> modifier key is pressed.
1495 * Value is of type <code>String</code>: possible values are <code>
1496 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1497 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1500 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1501 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1505 public static final String EDITOR_CTRL_HOVER = "ctrlHover"; //$NON-NLS-1$
1508 * A named preference that defines the hover shown when the <code>SHIFT</code> modifier key is pressed.
1510 * Value is of type <code>String</code>: possible values are <code>
1511 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1512 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1515 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1516 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1517 * @see JavaUI ID_*_HOVER
1520 public static final String EDITOR_SHIFT_HOVER = "shiftHover"; //$NON-NLS-1$
1523 * A named preference that defines the hover shown when the <code>CTRL + ALT</code> modifier keys is pressed.
1525 * Value is of type <code>String</code>: possible values are <code>
1526 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1527 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1530 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1531 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1532 * @see JavaUI ID_*_HOVER
1535 public static final String EDITOR_CTRL_ALT_HOVER = "ctrlAltHover"; //$NON-NLS-1$
1538 * A named preference that defines the hover shown when the <code>CTRL + ALT + SHIFT</code> modifier keys is pressed.
1540 * Value is of type <code>String</code>: possible values are <code>
1541 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1542 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1545 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1546 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1547 * @see JavaUI ID_*_HOVER
1550 public static final String EDITOR_CTRL_ALT_SHIFT_HOVER = "ctrlAltShiftHover"; //$NON-NLS-1$
1553 * A named preference that defines the hover shown when the <code>CTRL + SHIFT</code> modifier keys is pressed.
1555 * Value is of type <code>String</code>: possible values are <code>
1556 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or
1557 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1560 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1561 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1562 * @see JavaUI ID_*_HOVER
1565 public static final String EDITOR_CTRL_SHIFT_HOVER = "ctrlShiftHover"; //$NON-NLS-1$
1568 * A named preference that defines the hover shown when the <code>ALT</code> modifier key is pressed.
1570 * Value is of type <code>String</code>: possible values are <code>
1571 * EDITOR_NO_HOVER_CONFIGURED_ID</code>,
1572 * <code>EDITOR_DEFAULT_HOVER_CONFIGURED_ID</code> or the hover id of a hover contributed as <code>phpEditorTextHovers</code>.
1575 * @see #EDITOR_NO_HOVER_CONFIGURED_ID
1576 * @see #EDITOR_DEFAULT_HOVER_CONFIGURED_ID
1577 * @see JavaUI ID_*_HOVER
1580 public static final String EDITOR_ALT_SHIFT_HOVER = "altShiftHover"; //$NON-NLS-1$
1583 * A string value used by the named preferences for hover configuration to descibe that no hover should be shown for the given key
1588 public static final String EDITOR_NO_HOVER_CONFIGURED_ID = "noHoverConfiguredId"; //$NON-NLS-1$
1591 * A string value used by the named preferences for hover configuration to descibe that the default hover should be shown for the
1592 * given key modifiers. The default hover is described by the <code>EDITOR_DEFAULT_HOVER</code> property.
1596 public static final String EDITOR_DEFAULT_HOVER_CONFIGURED_ID = "defaultHoverConfiguredId"; //$NON-NLS-1$
1599 * A named preference that defines the hover named the 'default hover'. Value is of type <code>String</code>: possible values
1601 * EDITOR_NO_HOVER_CONFIGURED_ID</code> or <code> the hover id of a hover
1602 * contributed as <code>phpEditorTextHovers</code>.
1606 public static final String EDITOR_DEFAULT_HOVER = "defaultHover"; //$NON-NLS-1$
1609 * A named preference that controls if segmented view (show selected element only) is turned on or off.
1611 * Value is of type <code>Boolean</code>.
1614 public static final String EDITOR_SHOW_SEGMENTS = "net.sourceforge.phpdt.ui.editor.showSegments"; //$NON-NLS-1$
1617 * A named preference that controls if browser like links are turned on or off.
1619 * Value is of type <code>Boolean</code>.
1624 public static final String EDITOR_BROWSER_LIKE_LINKS = "browserLikeLinks"; //$NON-NLS-1$
1627 * A named preference that controls the key modifier for browser like links.
1629 * Value is of type <code>String</code>.
1634 public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER = "browserLikeLinksKeyModifier"; //$NON-NLS-1$
1637 * A named preference that controls whether occurrences are marked in the editor.
1639 * Value is of type <code>Boolean</code>.
1644 public static final String EDITOR_MARK_OCCURRENCES = "markOccurrences"; //$NON-NLS-1$
1647 * A named preference that controls whether occurrences are sticky in the editor.
1649 * Value is of type <code>Boolean</code>.
1654 public static final String EDITOR_STICKY_OCCURRENCES = "stickyOccurrences"; //$NON-NLS-1$
1657 * A named preference that controls disabling of the overwrite mode.
1659 * Value is of type <code>Boolean</code>.
1664 public static final String EDITOR_DISABLE_OVERWRITE_MODE = "disable_overwrite_mode"; //$NON-NLS-1$
1667 * A named preference that controls the "smart semicolon" smart typing handler
1669 * Value is of type <code>Boolean</code>.
1674 public static final String EDITOR_SMART_SEMICOLON = "smart_semicolon"; //$NON-NLS-1$
1677 * A named preference that controls the smart backspace behavior.
1679 * Value is of type <code>Boolean</code>.
1683 public static final String EDITOR_SMART_BACKSPACE = "smart_backspace"; //$NON-NLS-1$
1686 * A named preference that controls the "smart opening brace" smart typing handler
1688 * Value is of type <code>Boolean</code>.
1693 public static final String EDITOR_SMART_OPENING_BRACE = "smart_opening_brace"; //$NON-NLS-1$
1696 * A named preference that controls the smart tab behaviour.
1698 * Value is of type <code>Boolean</code>.
1702 public static final String EDITOR_SMART_TAB = "smart_tab"; //$NON-NLS-1$
1705 * A named preference that controls whether Java comments should be spell-checked.
1707 * Value is of type <code>Boolean</code>.
1712 public final static String SPELLING_CHECK_SPELLING = ISpellCheckPreferenceKeys.SPELLING_CHECK_SPELLING;
1715 * A named preference that controls whether words containing digits should be skipped during spell-checking.
1717 * Value is of type <code>Boolean</code>.
1722 public final static String SPELLING_IGNORE_DIGITS = ISpellCheckPreferenceKeys.SPELLING_IGNORE_DIGITS;
1725 * A named preference that controls whether mixed case words should be skipped during spell-checking.
1727 * Value is of type <code>Boolean</code>.
1732 public final static String SPELLING_IGNORE_MIXED = ISpellCheckPreferenceKeys.SPELLING_IGNORE_MIXED;
1735 * A named preference that controls whether sentence capitalization should be ignored during spell-checking.
1737 * Value is of type <code>Boolean</code>.
1742 public final static String SPELLING_IGNORE_SENTENCE = ISpellCheckPreferenceKeys.SPELLING_IGNORE_SENTENCE;
1745 * A named preference that controls whether upper case words should be skipped during spell-checking.
1747 * Value is of type <code>Boolean</code>.
1752 public final static String SPELLING_IGNORE_UPPER = ISpellCheckPreferenceKeys.SPELLING_IGNORE_UPPER;
1755 * A named preference that controls whether urls should be ignored during spell-checking.
1757 * Value is of type <code>Boolean</code>.
1762 public final static String SPELLING_IGNORE_URLS = ISpellCheckPreferenceKeys.SPELLING_IGNORE_URLS;
1765 * A named preference that controls the locale used for spell-checking.
1767 * Value is of type <code>String</code>.
1772 public final static String SPELLING_LOCALE = ISpellCheckPreferenceKeys.SPELLING_LOCALE;
1775 * A named preference that controls the number of proposals offered during spell-checking.
1777 * Value is of type <code>Integer</code>.
1782 public final static String SPELLING_PROPOSAL_THRESHOLD = ISpellCheckPreferenceKeys.SPELLING_PROPOSAL_THRESHOLD;
1785 * A named preference that specifies the workspace user dictionary.
1787 * Value is of type <code>Integer</code>.
1792 public final static String SPELLING_USER_DICTIONARY = ISpellCheckPreferenceKeys.SPELLING_USER_DICTIONARY;
1795 * A named preference that specifies whether spelling dictionaries are available to content assist.
1797 * Value is of type <code>Boolean</code>.
1802 public final static String SPELLING_ENABLE_CONTENTASSIST = ISpellCheckPreferenceKeys.SPELLING_ENABLE_CONTENTASSIST;
1805 * A named preference that controls whether code snippets are formatted in Javadoc comments.
1807 * Value is of type <code>Boolean</code>.
1812 public final static String FORMATTER_COMMENT_FORMATSOURCE = "comment_format_source_code"; //$NON-NLS-1$
1815 * A named preference that controls whether description of Javadoc parameters are indented.
1817 * Value is of type <code>Boolean</code>.
1822 public final static String FORMATTER_COMMENT_INDENTPARAMETERDESCRIPTION = "comment_indent_parameter_description"; //$NON-NLS-1$
1825 * A named preference that controls whether the header comment of a Java source file is formatted.
1827 * Value is of type <code>Boolean</code>.
1832 public final static String FORMATTER_COMMENT_FORMATHEADER = "comment_format_header"; //$NON-NLS-1$
1835 * A named preference that controls whether Javadoc root tags are indented.
1837 * Value is of type <code>Boolean</code>.
1842 public final static String FORMATTER_COMMENT_INDENTROOTTAGS = "comment_indent_root_tags"; //$NON-NLS-1$
1845 * A named preference that controls whether Javadoc comments are formatted by the content formatter.
1847 * Value is of type <code>Boolean</code>.
1852 public final static String FORMATTER_COMMENT_FORMAT = "comment_format_comments"; //$NON-NLS-1$
1855 * A named preference that controls whether a new line is inserted after Javadoc root tag parameters.
1857 * Value is of type <code>Boolean</code>.
1862 public final static String FORMATTER_COMMENT_NEWLINEFORPARAMETER = "comment_new_line_for_parameter"; //$NON-NLS-1$
1865 * A named preference that controls whether an empty line is inserted before the Javadoc root tag block.
1867 * Value is of type <code>Boolean</code>.
1872 public final static String FORMATTER_COMMENT_SEPARATEROOTTAGS = "comment_separate_root_tags"; //$NON-NLS-1$
1875 * A named preference that controls whether blank lines are cleared during formatting
1877 * Value is of type <code>Boolean</code>.
1882 public final static String FORMATTER_COMMENT_CLEARBLANKLINES = "comment_clear_blank_lines"; //$NON-NLS-1$
1885 * A named preference that controls the line length of comments.
1887 * Value is of type <code>Integer</code>. The value must be at least 4 for reasonable formatting.
1892 public final static String FORMATTER_COMMENT_LINELENGTH = "comment_line_length"; //$NON-NLS-1$
1895 * A named preference that controls whether html tags are formatted.
1897 * Value is of type <code>Boolean</code>.
1902 public final static String FORMATTER_COMMENT_FORMATHTML = "comment_format_html"; //$NON-NLS-1$
1905 * A named preference that controls if the Java code assist gets auto activated.
1907 * Value is of type <code>Boolean</code>.
1910 public final static String CODEASSIST_AUTOACTIVATION = "content_assist_autoactivation"; //$NON-NLS-1$
1913 * A name preference that holds the auto activation delay time in milli seconds.
1915 * Value is of type <code>Int</code>.
1918 public final static String CODEASSIST_AUTOACTIVATION_DELAY = "content_assist_autoactivation_delay"; //$NON-NLS-1$
1921 * A named preference that controls if code assist contains only visible proposals.
1923 * Value is of type <code>Boolean</code>. if <code>true<code> code assist only contains visible members. If
1924 * <code>false</code> all members are included.
1927 public final static String CODEASSIST_SHOW_VISIBLE_PROPOSALS = "content_assist_show_visible_proposals"; //$NON-NLS-1$
1930 * A named preference that controls if the Java code assist inserts a proposal automatically if only one proposal is available.
1932 * Value is of type <code>Boolean</code>.
1937 public final static String CODEASSIST_AUTOINSERT = "content_assist_autoinsert"; //$NON-NLS-1$
1940 * A named preference that controls if the Java code assist adds import statements.
1942 * Value is of type <code>Boolean</code>.
1947 public final static String CODEASSIST_ADDIMPORT = "content_assist_add_import"; //$NON-NLS-1$
1950 * A named preference that controls if the Java code assist only inserts completions. If set to false the proposals can also
1953 * Value is of type <code>Boolean</code>.
1958 public final static String CODEASSIST_INSERT_COMPLETION = "content_assist_insert_completion"; //$NON-NLS-1$
1961 * A named preference that controls whether code assist proposals filtering is case sensitive or not.
1963 * Value is of type <code>Boolean</code>.
1966 public final static String CODEASSIST_CASE_SENSITIVITY = "content_assist_case_sensitivity"; //$NON-NLS-1$
1969 * A named preference that defines if code assist proposals are sorted in alphabetical order.
1971 * Value is of type <code>Boolean</code>. If <code>true</code> that are sorted in alphabetical order. If <code>false</code>
1972 * that are unsorted.
1975 public final static String CODEASSIST_ORDER_PROPOSALS = "content_assist_order_proposals"; //$NON-NLS-1$
1978 * A named preference that controls if argument names are filled in when a method is selected from as list of code assist
1981 * Value is of type <code>Boolean</code>.
1984 public final static String CODEASSIST_FILL_ARGUMENT_NAMES = "content_assist_fill_method_arguments"; //$NON-NLS-1$
1987 * A named preference that controls if method arguments are guessed when a method is selected from as list of code assist
1990 * Value is of type <code>Boolean</code>.
1995 public final static String CODEASSIST_GUESS_METHOD_ARGUMENTS = "content_assist_guess_method_arguments"; //$NON-NLS-1$
1998 * A named preference that holds the characters that auto activate code assist in PHP code.
2000 * Value is of type <code>Sring</code>. All characters that trigger auto code assist in PHP code.
2003 public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA = "content_assist_autoactivation_triggers_php"; //$NON-NLS-1$
2006 * A named preference that holds the characters that auto activate code assist in PHPDoc.
2008 * Value is of type <code>Sring</code>. All characters that trigger auto code assist in PHPDoc.
2011 public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC = "content_assist_autoactivation_triggers_phpdoc"; //$NON-NLS-1$
2014 * A named preference that holds the characters that auto activate code assist in HTML.
2016 * Value is of type <code>Sring</code>. All characters that trigger auto code assist in HTML.
2019 public final static String CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML = "content_assist_autoactivation_triggers_html"; //$NON-NLS-1$
2022 * A named preference that holds the background color used in the code assist selection dialog.
2024 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2027 * @see org.eclipse.jface.resource.StringConverter
2028 * @see org.eclipse.jface.preference.PreferenceConverter
2030 public final static String CODEASSIST_PROPOSALS_BACKGROUND = "content_assist_proposals_background"; //$NON-NLS-1$
2033 * A named preference that holds the foreground color used in the code assist selection dialog.
2035 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2038 * @see org.eclipse.jface.resource.StringConverter
2039 * @see org.eclipse.jface.preference.PreferenceConverter
2041 public final static String CODEASSIST_PROPOSALS_FOREGROUND = "content_assist_proposals_foreground"; //$NON-NLS-1$
2044 * A named preference that holds the background color used for parameter hints.
2046 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2049 * @see org.eclipse.jface.resource.StringConverter
2050 * @see org.eclipse.jface.preference.PreferenceConverter
2052 public final static String CODEASSIST_PARAMETERS_BACKGROUND = "content_assist_parameters_background"; //$NON-NLS-1$
2055 * A named preference that holds the foreground color used in the code assist selection dialog
2057 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2060 * @see org.eclipse.jface.resource.StringConverter
2061 * @see org.eclipse.jface.preference.PreferenceConverter
2063 public final static String CODEASSIST_PARAMETERS_FOREGROUND = "content_assist_parameters_foreground"; //$NON-NLS-1$
2066 * A named preference that holds the background color used in the code assist selection dialog to mark replaced code.
2068 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2071 * @see org.eclipse.jface.resource.StringConverter
2072 * @see org.eclipse.jface.preference.PreferenceConverter
2075 public final static String CODEASSIST_REPLACEMENT_BACKGROUND = "content_assist_completion_replacement_background"; //$NON-NLS-1$
2078 * A named preference that holds the foreground color used in the code assist selection dialog to mark replaced code.
2080 * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
2083 * @see org.eclipse.jface.resource.StringConverter
2084 * @see org.eclipse.jface.preference.PreferenceConverter
2087 public final static String CODEASSIST_REPLACEMENT_FOREGROUND = "content_assist_completion_replacement_foreground"; //$NON-NLS-1$
2090 * A named preference that controls the behaviour of the refactoring wizard for showing the error page.
2092 * Value is of type <code>String</code>. Valid values are: <code>REFACTOR_FATAL_SEVERITY</code>,
2093 * <code>REFACTOR_ERROR_SEVERITY</code>,<code>REFACTOR_WARNING_SEVERITY</code>
2094 * <code>REFACTOR_INFO_SEVERITY</code>,
2095 * <code>REFACTOR_OK_SEVERITY</code>.
2098 * @see #REFACTOR_FATAL_SEVERITY
2099 * @see #REFACTOR_ERROR_SEVERITY
2100 * @see #REFACTOR_WARNING_SEVERITY
2101 * @see #REFACTOR_INFO_SEVERITY
2102 * @see #REFACTOR_OK_SEVERITY
2104 public static final String REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD = "Refactoring.ErrorPage.severityThreshold"; //$NON-NLS-1$
2107 * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2109 * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2111 public static final String REFACTOR_FATAL_SEVERITY = "4"; //$NON-NLS-1$
2114 * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2116 * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2118 public static final String REFACTOR_ERROR_SEVERITY = "3"; //$NON-NLS-1$
2121 * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2123 * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2125 public static final String REFACTOR_WARNING_SEVERITY = "2"; //$NON-NLS-1$
2128 * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2130 * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2132 public static final String REFACTOR_INFO_SEVERITY = "1"; //$NON-NLS-1$
2135 * A string value used by the named preference <code>REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</code>.
2137 * @see #REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD
2139 public static final String REFACTOR_OK_SEVERITY = "0"; //$NON-NLS-1$
2142 * A named preference thet controls whether all dirty editors are automatically saved before a refactoring is executed.
2144 * Value is of type <code>Boolean</code>.
2147 public static final String REFACTOR_SAVE_ALL_EDITORS = "Refactoring.savealleditors"; //$NON-NLS-1$
2150 * A named preference that controls if the Java Browsing views are linked to the active editor.
2152 * Value is of type <code>Boolean</code>.
2155 * @see #LINK_PACKAGES_TO_EDITOR
2157 public static final String BROWSING_LINK_VIEW_TO_EDITOR = "net.sourceforge.phpdt.ui.browsing.linktoeditor"; //$NON-NLS-1$
2160 * A named preference that controls the layout of the Java Browsing views vertically. Boolean value.
2162 * Value is of type <code>Boolean</code>. If <code>true<code> the views are stacked vertical.
2163 * If <code>false</code> they are stacked horizontal.
2166 public static final String BROWSING_STACK_VERTICALLY = "net.sourceforge.phpdt.ui.browsing.stackVertically"; //$NON-NLS-1$
2169 * A named preference that controls if templates are formatted when applied.
2171 * Value is of type <code>Boolean</code>.
2176 public static final String TEMPLATES_USE_CODEFORMATTER = "net.sourceforge.phpdt.ui.template.format"; //$NON-NLS-1$
2179 * A named preference that controls whether annotation roll over is used or not.
2181 * Value is of type <code>Boolean</code>. If <code>true<code> the annotation ruler column
2182 * uses a roll over to display multiple annotations
2187 public static final String EDITOR_ANNOTATION_ROLL_OVER = "editor_annotation_roll_over"; //$NON-NLS-1$
2190 * A named preference that controls the key modifier mask for browser like links. The value is only used if the value of
2191 * <code>EDITOR_BROWSER_LIKE_LINKS</code> cannot be resolved to valid SWT modifier bits.
2193 * Value is of type <code>String</code>.
2196 * @see #EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER
2199 public static final String EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK = "browserLikeLinksKeyModifierMask"; //$NON-NLS-1$
2202 * A named preference that defines the key for the hover modifier state masks. The value is only used if the value of
2203 * <code>EDITOR_TEXT_HOVER_MODIFIERS</code> cannot be resolved to valid SWT modifier bits.
2206 * @see #EDITOR_TEXT_HOVER_MODIFIERS
2209 public static final String EDITOR_TEXT_HOVER_MODIFIER_MASKS = "hoverModifierMasks"; //$NON-NLS-1$
2212 * A named preference that controls whether folding is enabled in the Java editor.
2214 * Value is of type <code>Boolean</code>.
2219 public static final String EDITOR_FOLDING_ENABLED = "editor_folding_enabled"; //$NON-NLS-1$
2222 * A named preference that stores the configured folding provider.
2224 * Value is of type <code>String</code>.
2229 public static final String EDITOR_FOLDING_PROVIDER = "editor_folding_provider"; //$NON-NLS-1$
2232 * A named preference that stores the value for Javadoc folding for the default folding provider.
2234 * Value is of type <code>Boolean</code>.
2239 public static final String EDITOR_FOLDING_JAVADOC = "editor_folding_default_javadoc"; //$NON-NLS-1$
2242 * A named preference that stores the value for inner type folding for the default folding provider.
2244 * Value is of type <code>Boolean</code>.
2249 public static final String EDITOR_FOLDING_INNERTYPES = "editor_folding_default_innertypes"; //$NON-NLS-1$
2252 * A named preference that stores the value for method folding for the default folding provider.
2254 * Value is of type <code>Boolean</code>.
2259 public static final String EDITOR_FOLDING_METHODS = "editor_folding_default_methods"; //$NON-NLS-1$
2262 * A named preference that stores the value for imports folding for the default folding provider.
2264 * Value is of type <code>Boolean</code>.
2269 public static final String EDITOR_FOLDING_IMPORTS = "editor_folding_default_imports"; //$NON-NLS-1$
2271 public static void initializeDefaultValues(IPreferenceStore store) {
2272 store.setDefault(PreferenceConstants.EDITOR_SHOW_SEGMENTS, false);
2274 // JavaBasePreferencePage
2275 store.setDefault(PreferenceConstants.LINK_PACKAGES_TO_EDITOR, true);
2276 store.setDefault(PreferenceConstants.LINK_TYPEHIERARCHY_TO_EDITOR, false);
2277 store.setDefault(PreferenceConstants.LINK_BROWSING_VIEW_TO_EDITOR, true);
2278 store.setDefault(PreferenceConstants.OPEN_TYPE_HIERARCHY, PreferenceConstants.OPEN_TYPE_HIERARCHY_IN_VIEW_PART);
2279 store.setDefault(PreferenceConstants.DOUBLE_CLICK, PreferenceConstants.DOUBLE_CLICK_EXPANDS);
2280 store.setDefault(PreferenceConstants.UPDATE_JAVA_VIEWS, PreferenceConstants.UPDATE_WHILE_EDITING);
2282 // AppearancePreferencePage
2283 store.setDefault(PreferenceConstants.APPEARANCE_COMPRESS_PACKAGE_NAMES, false);
2284 store.setDefault(PreferenceConstants.APPEARANCE_METHOD_RETURNTYPE, false);
2285 store.setDefault(PreferenceConstants.SHOW_CU_CHILDREN, true);
2286 store.setDefault(PreferenceConstants.APPEARANCE_OVERRIDE_INDICATOR, true);
2287 store.setDefault(PreferenceConstants.BROWSING_STACK_VERTICALLY, false);
2288 store.setDefault(PreferenceConstants.APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW, ""); //$NON-NLS-1$
2289 store.setDefault(PreferenceConstants.APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER, true);
2291 // ImportOrganizePreferencePage
2292 // store.setDefault(PreferenceConstants.ORGIMPORTS_IMPORTORDER, "php;phpx;org;com"); //$NON-NLS-1$
2293 store.setDefault(PreferenceConstants.ORGIMPORTS_ONDEMANDTHRESHOLD, 99);
2294 store.setDefault(PreferenceConstants.ORGIMPORTS_IGNORELOWERCASE, true);
2296 // ClasspathVariablesPreferencePage
2297 // CodeFormatterPreferencePage
2298 // CompilerPreferencePage
2299 // no initialization needed
2301 // RefactoringPreferencePage
2302 store.setDefault(PreferenceConstants.REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD, PreferenceConstants.REFACTOR_ERROR_SEVERITY);
2303 store.setDefault(PreferenceConstants.REFACTOR_SAVE_ALL_EDITORS, false);
2304 store.setDefault("RefactoringUI", "dialog");
2306 // TemplatePreferencePage
2307 store.setDefault(PreferenceConstants.TEMPLATES_USE_CODEFORMATTER, true);
2309 // CodeGenerationPreferencePage
2310 store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_PREFIX, false);
2311 store.setDefault(PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX, false);
2312 store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX, "fg, f, _$, _, m_"); //$NON-NLS-1$
2313 store.setDefault(PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX, "_"); //$NON-NLS-1$
2315 store.setDefault(PreferenceConstants.CODEGEN_KEYWORD_THIS, false);
2316 store.setDefault(PreferenceConstants.CODEGEN_IS_FOR_GETTERS, true);
2317 store.setDefault(PreferenceConstants.CODEGEN_EXCEPTION_VAR_NAME, "e"); //$NON-NLS-1$
2318 store.setDefault(PreferenceConstants.CODEGEN_ADD_COMMENTS, true);
2319 store.setDefault(PreferenceConstants.CODEGEN__NON_JAVADOC_COMMENTS, false);
2320 store.setDefault(PreferenceConstants.CODEGEN__FILE_COMMENTS, false);
2322 // MembersOrderPreferencePage
2323 store.setDefault(PreferenceConstants.APPEARANCE_MEMBER_SORT_ORDER, "T,SF,SI,SM,I,F,C,M"); //$NON-NLS-1$
2324 store.setDefault(PreferenceConstants.APPEARANCE_VISIBILITY_SORT_ORDER, "B,V,R,D"); //$NON-NLS-1$
2325 store.setDefault(PreferenceConstants.APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER, false);
2326 // must add here to guarantee that it is the first in the listener list
2327 store.addPropertyChangeListener(PHPeclipsePlugin.getDefault().getMemberOrderPreferenceCache());
2329 store.setDefault(PreferenceConstants.EDITOR_MATCHING_BRACKETS, true);
2330 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MATCHING_BRACKETS_COLOR, new RGB(192, 192, 192));
2332 store.setDefault(PreferenceConstants.EDITOR_CURRENT_LINE, true);
2333 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_CURRENT_LINE_COLOR, new RGB(225, 235, 224));
2335 store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN, false);
2336 store.setDefault(PreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN, 80);
2337 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PRINT_MARGIN_COLOR, new RGB(176, 180, 185));
2339 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_FIND_SCOPE_COLOR, new RGB(185, 176, 180));
2341 // store.setDefault(PreferenceConstants.EDITOR_PROBLEM_INDICATION, true);
2342 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR, new RGB(255, 0, 128));
2343 // store.setDefault(PreferenceConstants.EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER, true);
2345 // store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION, true);
2346 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_WARNING_INDICATION_COLOR, new RGB(244, 200, 45));
2347 // store.setDefault(PreferenceConstants.EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER, true);
2349 // store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION, false);
2350 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_TASK_INDICATION_COLOR, new RGB(0, 128, 255));
2351 // store.setDefault(PreferenceConstants.EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER, false);
2353 // store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION, false);
2354 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_BOOKMARK_INDICATION_COLOR, new RGB(34, 164, 99));
2355 // store.setDefault(PreferenceConstants.EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER, false);
2357 // store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION, false);
2358 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_COLOR, new RGB(192, 192, 192));
2359 // store.setDefault(PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER, false);
2361 // store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION, false);
2362 // PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_UNKNOWN_INDICATION_COLOR, new RGB(0, 0, 0));
2363 // store.setDefault(PreferenceConstants.EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER, false);
2365 store.setDefault(PreferenceConstants.EDITOR_CORRECTION_INDICATION, true);
2366 store.setDefault(PreferenceConstants.EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE, true);
2368 store.setDefault(PreferenceConstants.EDITOR_EVALUTE_TEMPORARY_PROBLEMS, true);
2370 store.setDefault(PreferenceConstants.EDITOR_OVERVIEW_RULER, true);
2372 store.setDefault(PreferenceConstants.EDITOR_LINE_NUMBER_RULER, false);
2373 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINE_NUMBER_RULER_COLOR, new RGB(0, 0, 0));
2375 // WorkbenchChainedTextFontFieldEditor.startPropagate(store, JFaceResources.TEXT_FONT);
2377 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINKED_POSITION_COLOR, new RGB(0, 200, 100));
2378 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_LINK_COLOR, new RGB(0, 0, 255));
2380 store.setDefault(PreferenceConstants.EDITOR_FOREGROUND_DEFAULT_COLOR, true);
2382 store.setDefault(PreferenceConstants.EDITOR_BACKGROUND_DEFAULT_COLOR, true);
2384 store.setDefault(PreferenceConstants.EDITOR_TAB_WIDTH, 4);
2385 store.setDefault(PreferenceConstants.EDITOR_SPACES_FOR_TABS, false);
2387 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2388 store.setDefault(PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_BOLD, false);
2390 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_COLOR, new RGB(63, 127, 95));
2391 store.setDefault(PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_BOLD, false);
2393 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_TAG_COLOR, new RGB(255, 0, 128));
2394 store.setDefault(PreferenceConstants.EDITOR_PHP_TAG_BOLD, true);
2396 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_KEYWORD_COLOR, new RGB(127, 0, 85));
2397 store.setDefault(PreferenceConstants.EDITOR_JAVA_KEYWORD_BOLD, true);
2399 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_COLOR, new RGB(127, 127, 159));
2400 store.setDefault(PreferenceConstants.EDITOR_PHP_FUNCTIONNAME_BOLD, false);
2402 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_VARIABLE_COLOR, new RGB(127, 159, 191));
2403 store.setDefault(PreferenceConstants.EDITOR_PHP_VARIABLE_BOLD, false);
2405 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_CONSTANT_COLOR, new RGB(127, 0, 85));
2406 store.setDefault(PreferenceConstants.EDITOR_PHP_CONSTANT_BOLD, false);
2408 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_PHP_TYPE_COLOR, new RGB(127, 0, 85));
2409 store.setDefault(PreferenceConstants.EDITOR_PHP_TYPE_BOLD, false);
2411 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR_DQ, PHPColorProvider.STRING_DQ);
2412 store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD_DQ, false);
2414 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_STRING_COLOR_SQ, PHPColorProvider.STRING_SQ);
2415 store.setDefault(PreferenceConstants.EDITOR_STRING_BOLD_SQ, true);
2417 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVA_DEFAULT_COLOR, new RGB(0, 0, 0));
2418 store.setDefault(PreferenceConstants.EDITOR_JAVA_DEFAULT_BOLD, false);
2420 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_KEYWORD_COLOR, new RGB(127, 159, 191));
2421 store.setDefault(PreferenceConstants.EDITOR_JAVADOC_KEYWORD_BOLD, true);
2423 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_TAG_COLOR, new RGB(127, 127, 159));
2424 store.setDefault(PreferenceConstants.EDITOR_JAVADOC_TAG_BOLD, false);
2426 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_LINKS_COLOR, new RGB(63, 63, 191));
2427 store.setDefault(PreferenceConstants.EDITOR_JAVADOC_LINKS_BOLD, false);
2429 PreferenceConverter.setDefault(store, PreferenceConstants.EDITOR_JAVADOC_DEFAULT_COLOR, new RGB(63, 95, 191));
2430 store.setDefault(PreferenceConstants.EDITOR_JAVADOC_DEFAULT_BOLD, false);
2432 store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION, true);
2433 store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_DELAY, 500);
2435 store.setDefault(PreferenceConstants.CODEASSIST_AUTOINSERT, true);
2436 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_BACKGROUND, new RGB(254, 241, 233));
2437 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PROPOSALS_FOREGROUND, new RGB(0, 0, 0));
2438 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_BACKGROUND, new RGB(254, 241, 233));
2439 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_PARAMETERS_FOREGROUND, new RGB(0, 0, 0));
2440 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_BACKGROUND, new RGB(255, 255, 0));
2441 PreferenceConverter.setDefault(store, PreferenceConstants.CODEASSIST_REPLACEMENT_FOREGROUND, new RGB(255, 0, 0));
2442 store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA, "$"); //$NON-NLS-1$
2443 store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC, "@"); //$NON-NLS-1$
2444 store.setDefault(PreferenceConstants.CODEASSIST_AUTOACTIVATION_TRIGGERS_HTML, "<&#"); //$NON-NLS-1$
2445 store.setDefault(PreferenceConstants.CODEASSIST_SHOW_VISIBLE_PROPOSALS, true);
2446 store.setDefault(PreferenceConstants.CODEASSIST_CASE_SENSITIVITY, false);
2447 store.setDefault(PreferenceConstants.CODEASSIST_ORDER_PROPOSALS, false);
2448 store.setDefault(PreferenceConstants.CODEASSIST_ADDIMPORT, true);
2449 store.setDefault(PreferenceConstants.CODEASSIST_INSERT_COMPLETION, true);
2450 store.setDefault(PreferenceConstants.CODEASSIST_FILL_ARGUMENT_NAMES, false);
2451 store.setDefault(PreferenceConstants.CODEASSIST_GUESS_METHOD_ARGUMENTS, true);
2452 store.setDefault(PreferenceConstants.CODEASSIST_PREFIX_COMPLETION, false);
2454 store.setDefault(PreferenceConstants.EDITOR_SMART_HOME_END, true);
2455 store.setDefault(PreferenceConstants.EDITOR_SUB_WORD_NAVIGATION, true);
2456 store.setDefault(PreferenceConstants.EDITOR_SMART_PASTE, true);
2457 store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_DQ_PHP, true);
2458 store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_SQ_PHP, true);
2459 store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_PHP, true);
2460 store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACES, true);
2461 store.setDefault(PreferenceConstants.EDITOR_CLOSE_JAVADOCS, true);
2462 store.setDefault(PreferenceConstants.EDITOR_WRAP_WORDS, false);
2463 store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS_DQ, true);
2464 store.setDefault(PreferenceConstants.EDITOR_ESCAPE_STRINGS_DQ, false);
2465 store.setDefault(PreferenceConstants.EDITOR_WRAP_STRINGS_SQ, true);
2466 store.setDefault(PreferenceConstants.EDITOR_ESCAPE_STRINGS_SQ, false);
2467 store.setDefault(PreferenceConstants.EDITOR_ADD_JAVADOC_TAGS, true);
2468 store.setDefault(PreferenceConstants.EDITOR_FORMAT_JAVADOCS, false);
2469 store.setDefault(PreferenceConstants.EDITOR_DISABLE_OVERWRITE_MODE, false);
2471 store.setDefault(PreferenceConstants.EDITOR_CLOSE_STRINGS_HTML, true);
2472 store.setDefault(PreferenceConstants.EDITOR_CLOSE_BRACKETS_HTML, true);
2474 // store.setDefault(PreferenceConstants.EDITOR_DEFAULT_HOVER, JavaPlugin.ID_BESTMATCH_HOVER);
2475 store.setDefault(PreferenceConstants.EDITOR_NONE_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2476 // store.setDefault(PreferenceConstants.EDITOR_CTRL_HOVER, JavaPlugin.ID_SOURCE_HOVER);
2477 store.setDefault(PreferenceConstants.EDITOR_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2478 store.setDefault(PreferenceConstants.EDITOR_CTRL_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2479 store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2480 store.setDefault(PreferenceConstants.EDITOR_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2481 store.setDefault(PreferenceConstants.EDITOR_CTRL_ALT_SHIFT_HOVER, PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID);
2483 String ctrl = Action.findModifierString(SWT.CTRL);
2484 store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS,
2485 "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + ctrl); //$NON-NLS-1$
2486 store.setDefault(PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIER_MASKS,
2487 "net.sourceforge.phpdt.ui.BestMatchHover;0;net.sourceforge.phpdt.ui.JavaSourceHover;" + SWT.CTRL); //$NON-NLS-1$
2488 store.setDefault(PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE, true);
2490 store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS, true);
2491 store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER, ctrl);
2492 store.setDefault(PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK, SWT.CTRL);
2495 store.setDefault(PreferenceConstants.SPELLING_CHECK_SPELLING, false);
2496 store.setDefault(PreferenceConstants.SPELLING_LOCALE, SpellCheckEngine.getDefaultLocale().toString());
2497 store.setDefault(PreferenceConstants.SPELLING_IGNORE_DIGITS, true);
2498 store.setDefault(PreferenceConstants.SPELLING_IGNORE_MIXED, true);
2499 store.setDefault(PreferenceConstants.SPELLING_IGNORE_SENTENCE, true);
2500 store.setDefault(PreferenceConstants.SPELLING_IGNORE_UPPER, true);
2501 store.setDefault(PreferenceConstants.SPELLING_IGNORE_URLS, true);
2502 store.setDefault(PreferenceConstants.SPELLING_USER_DICTIONARY, ""); //$NON-NLS-1$
2503 store.setDefault(PreferenceConstants.SPELLING_PROPOSAL_THRESHOLD, 20);
2504 store.setDefault(PreferenceConstants.SPELLING_ENABLE_CONTENTASSIST, false);
2507 store.setDefault(PreferenceConstants.EDITOR_FOLDING_ENABLED, true);
2508 store.setDefault(PreferenceConstants.EDITOR_FOLDING_PROVIDER, "net.sourceforge.phpdt.ui.text.defaultFoldingProvider"); //$NON-NLS-1$
2509 store.setDefault(PreferenceConstants.EDITOR_FOLDING_JAVADOC, true);
2510 store.setDefault(PreferenceConstants.EDITOR_FOLDING_INNERTYPES, true);
2511 store.setDefault(PreferenceConstants.EDITOR_FOLDING_METHODS, false);
2512 store.setDefault(PreferenceConstants.EDITOR_FOLDING_IMPORTS, false);
2514 store.setDefault(PreferenceConstants.EDITOR_SMART_BACKSPACE, true);
2516 // do more complicated stuff
2517 // NewJavaProjectPreferencePage.initDefaults(store);
2521 * Returns the JDT-UI preference store.
2523 * @return the JDT-UI preference store
2525 public static IPreferenceStore getPreferenceStore() {
2526 return PHPeclipsePlugin.getDefault().getPreferenceStore();
2530 // * Encodes a JRE library to be used in the named preference <code>NEWPROJECT_JRELIBRARY_LIST</code>.
2532 // * @param description a string value describing the JRE library. The description is used
2533 // * to indentify the JDR library in the UI
2534 // * @param entries an array of classpath entries to be encoded
2536 // * @return the encoded string.
2538 // public static String encodeJRELibrary(String description, IClasspathEntry[] entries) {
2539 // return NewJavaProjectPreferencePage.encodeJRELibrary(description, entries);
2543 // * Decodes an encoded JRE library and returns its description string.
2545 // * @return the description of an encoded JRE library
2547 // * @see #encodeJRELibrary(String, IClasspathEntry[])
2549 // public static String decodeJRELibraryDescription(String encodedLibrary) {
2550 // return NewJavaProjectPreferencePage.decodeJRELibraryDescription(encodedLibrary);
2554 // * Decodes an encoded JRE library and returns its classpath entries.
2556 // * @return the array of classpath entries of an encoded JRE library.
2558 // * @see #encodeJRELibrary(String, IClasspathEntry[])
2560 // public static IClasspathEntry[] decodeJRELibraryClasspathEntries(String encodedLibrary) {
2561 // return NewJavaProjectPreferencePage.decodeJRELibraryClasspathEntries(encodedLibrary);
2565 // * Returns the current configuration for the JRE to be used as default in new Java projects.
2566 // * This is a convenience method to access the named preference <code>NEWPROJECT_JRELIBRARY_LIST
2567 // * </code> with the index defined by <code> NEWPROJECT_JRELIBRARY_INDEX</code>.
2569 // * @return the current default set of classpath entries
2571 // * @see #NEWPROJECT_JRELIBRARY_LIST
2572 // * @see #NEWPROJECT_JRELIBRARY_INDEX
2574 // public static IClasspathEntry[] getDefaultJRELibrary() {
2575 // return NewJavaProjectPreferencePage.getDefaultJRELibrary();