Project

General

Profile

Download (960 Bytes) Statistics
| Branch: | Tag: | Revision:
1 4022137c n.hoffmann
/**
2
* Copyright (C) 2007 EDIT
3 9a3af936 Patrick Plitzner
* European Distributed Institute of Taxonomy
4 4022137c n.hoffmann
* http://www.e-taxonomy.eu
5 9a3af936 Patrick Plitzner
*
6 4022137c n.hoffmann
* 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 3aa58b57 n.hoffmann
package eu.etaxonomy.taxeditor.preference.menu;
11 4022137c n.hoffmann
12 85c6cfb6 Katja Luther
import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
13 b9dc6bb1 Andreas Müller
import eu.etaxonomy.cdm.model.term.TermType;
14 c295928b Katja Luther
import eu.etaxonomy.taxeditor.preference.GeneralTermPreferencePage;
15 4022137c n.hoffmann
16
/**
17 3be6ef3e n.hoffmann
 * <p>TaxonRelationshipTypeMenuPreferences class.</p>
18
 *
19 4022137c n.hoffmann
 * @author n.hoffmann
20
 * @created 25.06.2009
21
 * @version 1.0
22
 */
23
public class TaxonRelationshipTypeMenuPreferences extends
24 c295928b Katja Luther
		GeneralTermPreferencePage {
25 4022137c n.hoffmann
26
	/**
27 3be6ef3e n.hoffmann
	 * <p>Constructor for TaxonRelationshipTypeMenuPreferences.</p>
28 4022137c n.hoffmann
	 */
29
	public TaxonRelationshipTypeMenuPreferences() {
30 85c6cfb6 Katja Luther
	    super();
31
        setPredicate(PreferencePredicate.ConceptRelationshipType);
32
        type = TermType.TaxonRelationshipType;
33 4022137c n.hoffmann
	}
34 30140758 n.hoffmann
35 9a3af936 Patrick Plitzner
36 3be6ef3e n.hoffmann
}