ref #6794 Adapt taxeditor to model changes (feature tree/node generics)
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / MatchingPreferences.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>MatchingPreferences class.</p>
21 *
22 * @author n.hoffmann
23 * @created Jan 22, 2010
24 * @version 1.0
25 */
26 public class MatchingPreferences extends CdmPreferencePage {
27
28 /** {@inheritDoc} */
29 @Override
30 protected Control createContents(Composite parent) {
31 Composite container = new Composite(parent, SWT.NULL);
32 container.setLayout(new GridLayout());
33
34 //
35 return container;
36 }
37
38 }