Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / menu / FeatureMenuPreferences.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 package eu.etaxonomy.taxeditor.preference.menu;
10
11 import eu.etaxonomy.cdm.model.common.TermType;
12 import eu.etaxonomy.cdm.model.description.Feature;
13
14 /**
15 * <p>FeatureMenuPreferences class.</p>
16 *
17 * @author p.ciardelli
18 * @author n.hoffmann
19 * @created 17.09.2008
20 * @version 1.0
21 */
22 public class FeatureMenuPreferences extends AbstractMenuPreferences<Feature> {
23
24 /** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.preferences.feat"{trunked}</code> */
25 public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.preferences.feature";
26
27 /**
28 * <p>Constructor for FeatureMenuPreferences.</p>
29 */
30 public FeatureMenuPreferences() {
31 super("Feature Preferences",
32 "Choose which features you would like to use for descriptive elements.",
33 false);
34 }
35
36 /* (non-Javadoc)
37 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
38 */
39 /** {@inheritDoc} */
40 @Override
41 protected TermType getTermType() {
42 return TermType.Feature;
43 }
44 }