Project

General

Profile

Download (1.25 KB) Statistics
| Branch: | Tag: | Revision:
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
import eu.etaxonomy.taxeditor.l10n.Messages;
14

    
15
/**
16
 * <p>FeatureMenuPreferences class.</p>
17
 *
18
 * @author p.ciardelli
19
 * @author n.hoffmann
20
 * @created 17.09.2008
21
 * @version 1.0
22
 */
23
public class FeatureMenuPreferences extends AbstractMenuPreferences<Feature> {
24

    
25
	/** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.preferences.feat"{trunked}</code> */
26
	public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.preferences.feature"; //$NON-NLS-1$
27

    
28
	/**
29
	 * <p>Constructor for FeatureMenuPreferences.</p>
30
	 */
31
	public FeatureMenuPreferences() {
32
		super("Feature Preferences", //$NON-NLS-1$
33
				Messages.FeatureMenuPreferences_display,
34
				false);
35
	}
36

    
37
	/* (non-Javadoc)
38
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
39
	 */
40
	/** {@inheritDoc} */
41
	@Override
42
	protected TermType getTermType() {
43
		return TermType.Feature;
44
	}
45
}
(6-6/21)