Merge branch 'hotfix/5.44.1'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / selection / ClassificationSelectionElement.java
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 package eu.etaxonomy.taxeditor.ui.selection;
10
11 import eu.etaxonomy.cdm.model.taxon.Classification;
12 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
13 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
14
15 public class ClassificationSelectionElement extends EntitySelectionElement<Classification> {
16
17 public ClassificationSelectionElement(CdmFormFactory formFactory,
18 ICdmFormElement parentElement,
19 Class<Classification> clazz, String labelString,
20 Classification entity, int mode, int style) {
21 super(formFactory,
22 parentElement, clazz, labelString, entity,
23 mode, style);
24 }
25 }