intial source from ttp://www.sf.net/projects/wdte
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.css.core / src / net / sourceforge / phpeclipse / css / core / internal / CssCorePreferences.java
1 /*
2  * Copyright (c) 2003-2004 Christopher Lenz 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
7  * 
8  * Contributors:
9  *     Christopher Lenz - initial API and implementation
10  * 
11  * $Id: CssCorePreferences.java,v 1.1 2004-09-02 18:07:12 jsurfer Exp $
12  */
13
14 package net.sourceforge.phpeclipse.css.core.internal;
15
16 import org.eclipse.core.runtime.Preferences;
17
18 /**
19  * TODO type comment
20  */
21 public final class CssCorePreferences {
22
23         // Constants ---------------------------------------------------------------
24
25         public static final String PROFILE =
26                 "profile"; //$NON-NLS-1$
27
28         // Constructors ------------------------------------------------------------
29
30         /**
31          * Hidden constructor.
32          */
33         private CssCorePreferences() {
34                 // Hidden
35         }
36
37         // Public Methods ----------------------------------------------------------
38
39         /**
40          * Initializes the given plugin preferences with the default values.
41          * 
42          * @param preferences the preferences to initialize
43          */
44         public static void initializeDefaultValues(Preferences preferences) {
45                 preferences.setDefault(PROFILE,
46                         "net.sourceforge.phpeclipse.css.core.profiles.css2"); //$NON-NLS-1$
47         }
48
49 }