LibrAlign dependency version updated.
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / menu / NomenclaturalStatusTypeMenuPreferences.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.menu;
11
12 import eu.etaxonomy.cdm.model.name.NomenclaturalStatusType;
13
14 /**
15 * <p>NomenclaturalStatusTypeMenuPreferences class.</p>
16 *
17 * @author n.hoffmann
18 * @created 25.06.2009
19 * @version 1.0
20 */
21 public class NomenclaturalStatusTypeMenuPreferences extends
22 AbstractMenuPreferences<NomenclaturalStatusType> {
23
24 /**
25 * <p>Constructor for NomenclaturalStatusTypeMenuPreferences.</p>
26 */
27 public NomenclaturalStatusTypeMenuPreferences() {
28 super("Nomenlcatural Status Type Preferences",
29 "Configure nomenclatural status types",
30 false);
31 }
32
33 /* (non-Javadoc)
34 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
35 */
36 /** {@inheritDoc} */
37 @Override
38 protected Class<NomenclaturalStatusType> getTermClass() {
39 return NomenclaturalStatusType.class;
40 }
41
42 }