Project

General

Profile

Download (1.17 KB) Statistics
| Branch: | Tag: | Revision:
1 2d9a13f7 n.hoffmann
/**
2
* Copyright (C) 2007 EDIT
3 6ac58758 Patric Plitzner
* European Distributed Institute of Taxonomy
4 2d9a13f7 n.hoffmann
* http://www.e-taxonomy.eu
5 6ac58758 Patric Plitzner
*
6 2d9a13f7 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
package eu.etaxonomy.taxeditor.preference.menu;
11
12 6ac58758 Patric Plitzner
import eu.etaxonomy.cdm.model.common.DefinedTerm;
13 9a3af936 Patrick Plitzner
import eu.etaxonomy.cdm.model.common.TermType;
14 2d9a13f7 n.hoffmann
15
/**
16 3be6ef3e n.hoffmann
 * <p>PreservationMethodMenuPreferences class.</p>
17
 *
18 2d9a13f7 n.hoffmann
 * @author n.hoffmann
19
 * @created Jun 25, 2010
20
 * @version 1.0
21
 */
22 6ac58758 Patric Plitzner
public class PreservationMethodMenuPreferences extends AbstractMenuPreferences<DefinedTerm>  {
23
//FIXME:3.3MC---- see Ticket #3732
24
//extends AbstractMenuPreferences<PreservationMethod> {
25
  //FIXME:3.3MC----
26
27 3be6ef3e n.hoffmann
	/**
28
	 * <p>Constructor for PreservationMethodMenuPreferences.</p>
29
	 */
30 2d9a13f7 n.hoffmann
	public PreservationMethodMenuPreferences() {
31 6ac58758 Patric Plitzner
		super("Preservation Method Preferences",
32
				"Select preservation methods to be shown in selections",
33 2d9a13f7 n.hoffmann
				false);
34
	}
35 30140758 n.hoffmann
36
	/* (non-Javadoc)
37
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
38
	 */
39 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
40 30140758 n.hoffmann
	@Override
41 9a3af936 Patrick Plitzner
	protected TermType getTermType() {
42
		return TermType.MaterialOrMethod;
43 30140758 n.hoffmann
	}
44 2d9a13f7 n.hoffmann
}