Project

General

Profile

Download (972 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.preference.menu;
12

    
13
import eu.etaxonomy.cdm.model.common.DefinedTerm;
14

    
15

    
16
/**
17
 * <p>StageMenuPreferences class.</p>
18
 *
19
 * @author n.hoffmann
20
 * @created Jun 25, 2010
21
 * @version 1.0
22
 */
23
public class StageMenuPreferences extends AbstractMenuPreferences<DefinedTerm> {
24
	
25
	/**
26
	 * <p>Constructor for StageMenuPreferences.</p>
27
	 */
28
	public StageMenuPreferences() {
29
		super("Stage Preferences", 
30
				"Choose stages to be shown in selection combos", 
31
				false);
32
	}
33

    
34
	/* (non-Javadoc)
35
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
36
	 */
37
	/** {@inheritDoc} */
38
	@Override
39
	protected Class<DefinedTerm> getTermClass() {
40
		return null;
41
	}
42

    
43
}
(19-19/20)