Merged refactoring from development branch.
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / ui / term / SpecimenTypeDesignationStatusComboElement.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.ui.term;
12
13 import java.util.List;
14
15 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignationStatus;
16 import eu.etaxonomy.taxeditor.ui.forms.CdmFormFactory;
17 import eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement;
18
19 /**
20 * <p>SpecimenTypeDesignationStatusComboElement class.</p>
21 *
22 * @author n.hoffmann
23 * @created May 17, 2010
24 * @version 1.0
25 */
26 public class SpecimenTypeDesignationStatusComboElement extends
27 AbstractTermComboElement<SpecimenTypeDesignationStatus> {
28
29 private static final int VISIBLE_ITEMS = 10;
30
31 /**
32 * <p>Constructor for SpecimenTypeDesignationStatusComboElement.</p>
33 *
34 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.forms.CdmFormFactory} object.
35 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement} object.
36 * @param labelString a {@link java.lang.String} object.
37 * @param selection a {@link eu.etaxonomy.cdm.model.name.SpecimenTypeDesignationStatus} object.
38 * @param style a int.
39 */
40 public SpecimenTypeDesignationStatusComboElement(
41 CdmFormFactory formFactory, ICdmFormElement parentElement,
42 String labelString, SpecimenTypeDesignationStatus selection, int style) {
43 super(formFactory, parentElement, labelString, selection, VISIBLE_ITEMS, style);
44 }
45
46 /* (non-Javadoc)
47 * @see eu.etaxonomy.taxeditor.forms.term.AbstractTermComboElement#preferredTerms()
48 */
49 /** {@inheritDoc} */
50 @Override
51 protected List<SpecimenTypeDesignationStatus> preferredTerms() {
52 return getTermManager().getPreferredSpecimenTypeDesignationStatus();
53 }
54 }