Project

General

Profile

Download (1.22 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
import eu.etaxonomy.cdm.model.common.TermType;
14
import eu.etaxonomy.taxeditor.l10n.Messages;
15

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

    
28
	/**
29
	 * <p>Constructor for PreservationMethodMenuPreferences.</p>
30
	 */
31
	public PreservationMethodMenuPreferences() {
32
		super("Preservation Method Preferences", //$NON-NLS-1$
33
				Messages.PreservationMethodMenuPreferences_select,
34
				false);
35
	}
36

    
37
	/* (non-Javadoc)
38
	 * @see eu.etaxonomy.taxeditor.preference.menu.AbstractMenuPreferences#getTermClass()
39
	 */
40
	/** {@inheritDoc} */
41
	@Override
42
	protected TermType getTermType() {
43
		return TermType.MaterialOrMethod;
44
	}
45
}
(17-17/21)