Project

General

Profile

Download (999 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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;
10

    
11
import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
12
import eu.etaxonomy.cdm.model.term.TermType;
13
import eu.etaxonomy.taxeditor.l10n.Messages;
14
import eu.etaxonomy.taxeditor.preference.wizard.GeneralVocabularyPreferencePage;
15

    
16
/**
17
 * @author k.luther
18
 * @since 05.10.2018
19
 *
20
 */
21
public class CommonNameVocabularyPreferencePage extends GeneralVocabularyPreferencePage implements IE4PreferencePage {
22

    
23

    
24
    public CommonNameVocabularyPreferencePage(){
25
        isAdminPreference = false;
26
        setPredicate(PreferencePredicate.CommonNameAreaVocabularies);
27
        setDescription(Messages.CommonNameVocabularyPreferencePage_description);
28
        type = TermType.NamedArea;
29

    
30
    }
31

    
32

    
33

    
34

    
35

    
36

    
37

    
38

    
39

    
40
}
(9-9/62)