had to rename the packages to make them compliant with buckminster
[taxeditor.git] / eu.etaxonomy.taxeditor.bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / preference / BulkEditorGeneralPreferencePage.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.bulkeditor.preference;
12
13 import org.eclipse.jface.preference.PreferencePage;
14 import org.eclipse.swt.SWT;
15 import org.eclipse.swt.layout.GridLayout;
16 import org.eclipse.swt.widgets.Composite;
17 import org.eclipse.swt.widgets.Control;
18 import org.eclipse.ui.IWorkbench;
19 import org.eclipse.ui.IWorkbenchPreferencePage;
20
21 /**
22 * @author n.hoffmann
23 * @created Dec 13, 2010
24 * @version 1.0
25 */
26 public class BulkEditorGeneralPreferencePage extends PreferencePage implements
27 IWorkbenchPreferencePage {
28
29 /* (non-Javadoc)
30 * @see org.eclipse.ui.IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
31 */
32 @Override
33 public void init(IWorkbench workbench) {
34 // TODO Auto-generated method stub
35
36 }
37
38 /* (non-Javadoc)
39 * @see org.eclipse.jface.preference.PreferencePage#createContents(org.eclipse.swt.widgets.Composite)
40 */
41 @Override
42 protected Control createContents(Composite parent) {
43 Composite container = new Composite(parent, SWT.NULL);
44 container.setLayout(new GridLayout());
45
46 //
47 return container;
48 }
49
50 }