Project

General

Profile

Download (1.26 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

    
10
package eu.etaxonomy.taxeditor.preference.menu;
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
import eu.etaxonomy.taxeditor.preference.GeneralTermPreference;
18

    
19
/**
20
 * <p>NameTypeDesignationStatusMenuPreferences class.</p>
21
 *
22
 * @author n.hoffmann
23
 * @created 25.06.2009
24
 * @version 1.0
25
 */
26
public class NameTypeDesignationStatusMenuPreferences extends
27
		GeneralTermPreference {
28
    /**
29
     * <p>Constructor for NameTypeDesignationStatusMenuPreferences.</p>
30
     */
31
    public NameTypeDesignationStatusMenuPreferences() {
32
        super();
33
        setLocalPref(true);
34
        setPredicate(PreferencePredicate.NameTypeDesignationStatus);
35
        type = TermType.NameTypeDesignationStatus;
36
    }
37

    
38
    /**
39
     * {@inheritDoc}
40
     */
41
    @Override
42
    protected List<TermVocabularyDto> getVocabulariesFromPreference() {
43
        // TODO Auto-generated method stub
44
        return null;
45
    }
46
}
(14-14/21)