1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation 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-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
12 package net.sourceforge.phpdt.internal.ui.text.spelling.engine;
15 * Preference keys for the comment spell-checker.
19 public interface ISpellCheckPreferenceKeys {
22 * A named preference that controls whether spell-checking should be
25 * Value is of type <code>Boolean</code>.
28 public final static String SPELLING_CHECK_SPELLING = "spelling_check_spelling"; //$NON-NLS-1$
31 * A named preference that controls whether words containing digits should
32 * be skipped during spell-checking.
34 * Value is of type <code>Boolean</code>.
37 public final static String SPELLING_IGNORE_DIGITS = "spelling_ignore_digits"; //$NON-NLS-1$
40 * A named preference that controls whether mixed case words should be
41 * skipped during spell-checking.
43 * Value is of type <code>Boolean</code>.
46 public final static String SPELLING_IGNORE_MIXED = "spelling_ignore_mixed"; //$NON-NLS-1$
49 * A named preference that controls whether sentence capitalization should
50 * be ignored during spell-checking.
52 * Value is of type <code>Boolean</code>.
55 public final static String SPELLING_IGNORE_SENTENCE = "spelling_ignore_sentence"; //$NON-NLS-1$
58 * A named preference that controls whether upper case words should be
59 * skipped during spell-checking.
61 * Value is of type <code>Boolean</code>.
64 public final static String SPELLING_IGNORE_UPPER = "spelling_ignore_upper"; //$NON-NLS-1$
67 * A named preference that controls whether urls should be ignored during
70 * Value is of type <code>Boolean</code>.
73 public final static String SPELLING_IGNORE_URLS = "spelling_ignore_urls"; //$NON-NLS-1$
76 * A named preference that controls the locale used for spell-checking.
78 * Value is of type <code>String</code>.
81 public final static String SPELLING_LOCALE = "spelling_locale"; //$NON-NLS-1$
84 * A named preference that controls the number of proposals offered during
87 * Value is of type <code>Integer</code>.
90 public final static String SPELLING_PROPOSAL_THRESHOLD = "spelling_proposal_threshold"; //$NON-NLS-1$
93 * A named preference that specifies the workspace user dictionary.
95 * Value is of type <code>String</code>.
98 public final static String SPELLING_USER_DICTIONARY = "spelling_user_dictionary"; //$NON-NLS-1$
101 * A named preference that specifies whether spelling dictionaries are
102 * available to content assist.
104 * Value is of type <code>Boolean</code>.
107 public final static String SPELLING_ENABLE_CONTENTASSIST = "spelling_enable_contentassist"; //$NON-NLS-1$