]> git.argeo.org Git - lgpl/argeo-commons.git/blob - i18n/preferences/LocaleSettingsPage.java
Prepare next development cycle
[lgpl/argeo-commons.git] / i18n / preferences / LocaleSettingsPage.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.demo.i18n.preferences;
17
18 import org.eclipse.jface.preference.BooleanFieldEditor;
19 import org.eclipse.jface.preference.FieldEditorPreferencePage;
20 import org.eclipse.jface.preference.RadioGroupFieldEditor;
21 import org.eclipse.jface.preference.StringFieldEditor;
22 import org.eclipse.ui.IWorkbench;
23 import org.eclipse.ui.IWorkbenchPreferencePage;
24
25 public class LocaleSettingsPage extends FieldEditorPreferencePage implements
26 IWorkbenchPreferencePage {
27
28 public LocaleSettingsPage() {
29 super(GRID);
30 }
31
32 public void createFieldEditors() {
33 addField(new BooleanFieldEditor("BOOLEAN_VALUE",
34 "&An example of a boolean preference", getFieldEditorParent()));
35
36 addField(new RadioGroupFieldEditor("CHOICE",
37 "An example of a multiple-choice preference", 1,
38 new String[][] { { "&Choice 1", "choice1" },
39 { "C&hoice 2", "choice2" } }, getFieldEditorParent()));
40 addField(new StringFieldEditor("locale", "Chosen locale",
41 getFieldEditorParent()));
42 addField(new StringFieldEditor("MySTRING2", "A &text preference:",
43 getFieldEditorParent()));
44 }
45
46 @Override
47 public void init(IWorkbench workbench) {
48 }
49
50 }