Project

General

Profile

Download (1017 Bytes) 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 eu.etaxonomy.cdm.model.common.ExtensionType;
13

    
14
/**
15
 * <p>ExtensionTypeMenuPreferences class.</p>
16
 *
17
 * @author n.hoffmann
18
 * @created Aug 28, 2009
19
 * @version 1.0
20
 */
21
public class ExtensionTypeMenuPreferences extends AbstractMenuPreferences<ExtensionType> {
22

    
23
	/**
24
	 * <p>Constructor for ExtensionTypeMenuPreferences.</p>
25
	 */
26
	public ExtensionTypeMenuPreferences() {
27
		super("Extension Type Preferences" , 
28
				"Choose which extension types to display",
29
				false);
30
	}
31

    
32
	/* (non-Javadoc)
33
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
34
	 */
35
	/** {@inheritDoc} */
36
	@Override
37
	protected Class<ExtensionType> getTermClass() {
38
		return ExtensionType.class;
39
	}
40
}
(5-5/20)