ref #8385: fix nomenclatural code preference page - continue
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / preference / NomenclaturalStatusTypePreferences.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 java.util.List;
13
14 import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
15 import eu.etaxonomy.cdm.model.term.TermType;
16 import eu.etaxonomy.cdm.persistence.dto.TermVocabularyDto;
17
18 /**
19 * <p>NomenclaturalStatusTypeMenuPreferences class.</p>
20 *
21 * @author n.hoffmann
22 * @created 25.06.2009
23 * @version 1.0
24 */
25 public class NomenclaturalStatusTypePreferences extends
26 GeneralTermPreference {
27
28 /**
29 * <p>Constructor for NomenclaturalStatusTypeMenuPreferences.</p>
30 */
31 public NomenclaturalStatusTypePreferences() {
32 super();
33 setLocalPref(true);
34 setPredicate(PreferencePredicate.AvailableNomenclaturalStatus);
35 type = TermType.NomenclaturalStatusType;
36 }
37
38
39
40 /**
41 * {@inheritDoc}
42 */
43 @Override
44 protected List<TermVocabularyDto> getVocabulariesFromPreference() {
45 // TODO Auto-generated method stub
46 return null;
47 }
48
49
50
51
52
53 }