Project

General

Profile

Download (1.12 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 eu.etaxonomy.cdm.model.common.DefinedTerm;
13

    
14
/**
15
 * <p>PreservationMethodMenuPreferences class.</p>
16
 *
17
 * @author n.hoffmann
18
 * @created Jun 25, 2010
19
 * @version 1.0
20
 */
21
public class PreservationMethodMenuPreferences extends AbstractMenuPreferences<DefinedTerm>  {
22
//FIXME:3.3MC---- see Ticket #3732
23
//extends AbstractMenuPreferences<PreservationMethod> {
24
  //FIXME:3.3MC----
25

    
26
	/**
27
	 * <p>Constructor for PreservationMethodMenuPreferences.</p>
28
	 */
29
	public PreservationMethodMenuPreferences() {
30
		super("Preservation Method Preferences",
31
				"Select preservation methods to be shown in selections",
32
				false);
33
	}
34

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