correct handling of allowOverride in taxonnode admin preferences
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / TaxonomicPreferences.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.preference;
11
12 import org.eclipse.swt.SWT;
13 import org.eclipse.swt.layout.GridLayout;
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.swt.widgets.Control;
16
17 import eu.etaxonomy.taxeditor.preference.menu.CdmPreferencePage;
18
19 /**
20 * <p>TaxonomicPreferences class.</p>
21 *
22 * @author p.ciardelli
23 * @created 20.05.2008
24 * @version 1.0
25 */
26 public class TaxonomicPreferences extends CdmPreferencePage {
27
28 /** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.taxonomic.prefer"{trunked}</code> */
29 public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.taxonomic.preferences";
30
31 /** {@inheritDoc} */
32 @Override
33 protected Control createContents(Composite parent) {
34
35 Composite container = new Composite(parent, SWT.NULL);
36 container.setLayout(new GridLayout());
37
38 //
39 return container;
40 }
41
42 }