01: /* uDig - User Friendly Desktop Internet GIS client
02: * http://udig.refractions.net
03: * (C) 2004, Refractions Research Inc.
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation;
08: * version 2.1 of the License.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: */
15: package net.refractions.udig.internal.ui;
16:
17: import org.eclipse.jface.preference.FieldEditorPreferencePage;
18: import org.eclipse.jface.resource.ImageDescriptor;
19: import org.eclipse.ui.IWorkbench;
20: import org.eclipse.ui.IWorkbenchPreferencePage;
21:
22: /**
23: * General uDig preferences
24: * @author Jesse
25: * @since 1.1.0
26: */
27: public class GeneralPreferences extends FieldEditorPreferencePage
28: implements IWorkbenchPreferencePage {
29:
30: /**
31: * @param style
32: */
33: public GeneralPreferences() {
34: super (GRID);
35: }
36:
37: /**
38: * @param title
39: * @param style
40: */
41: public GeneralPreferences(String title, int style) {
42: super (title, style);
43: }
44:
45: /**
46: * @param title
47: * @param image
48: * @param style
49: */
50: public GeneralPreferences(String title, ImageDescriptor image,
51: int style) {
52: super (title, image, style);
53: }
54:
55: @Override
56: protected void createFieldEditors() {
57: }
58:
59: public void init(IWorkbench workbench) {
60: }
61:
62: }
|