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