Project

General

Profile

Download (815 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2009 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
package eu.etaxonomy.taxeditor.editor.definedterm.input;
10

    
11
import java.util.List;
12

    
13
import eu.etaxonomy.cdm.model.common.DefinedTermBase;
14
import eu.etaxonomy.taxeditor.editor.CdmEntitySessionInput;
15

    
16
/**
17
 * @author l.morris
18
 * @date 3 Jan 2012
19
 *
20
 */
21
public abstract class AbstractDefinedTermEditorInput<T extends DefinedTermBase> extends CdmEntitySessionInput {
22

    
23
	/**
24
	 *
25
	 */
26
	public AbstractDefinedTermEditorInput() {
27
		super(true);
28
	}
29

    
30
	/**
31
	 * @return
32
	 */
33
	public abstract List<String> getTermClasses();
34

    
35

    
36
}
(1-1/2)