Project

General

Profile

Download (709 Bytes) Statistics
| Branch: | Tag: | Revision:
1 f512d3f1 Katja Luther
package eu.etaxonomy.taxeditor.ui.selection;
2
3
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
4
import eu.etaxonomy.cdm.model.taxon.Classification;
5
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
6
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
7
8
public class ClassificationSelectionElement extends EntitySelectionElement<Classification> {
9
10
	public ClassificationSelectionElement(CdmFormFactory formFactory,
11
			ConversationHolder conversation, ICdmFormElement parentElement,
12
			Class<Classification> clazz, String labelString,
13
			Classification entity, int mode, int style) {
14
		super(formFactory, conversation, parentElement, clazz, labelString, entity,
15
				mode, style);
16
		
17
	}
18
19
}