Merged refactoring from development branch.
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / ui / term / NameRelationshipTypeComboElement.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.NameRelationshipType;
16 import eu.etaxonomy.taxeditor.ui.forms.CdmFormFactory;
17 import eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement;
18
19 /**
20 * <p>NameRelationshipTypeComboElement class.</p>
21 *
22 * @author n.hoffmann
23 * @created Mar 19, 2010
24 * @version 1.0
25 */
26 public class NameRelationshipTypeComboElement extends AbstractTermComboElement<NameRelationshipType> {
27
28 private static final int VISIBLE_ITEMS = 10;
29
30 /**
31 * <p>Constructor for NameRelationshipTypeComboElement.</p>
32 *
33 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.forms.CdmFormFactory} object.
34 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement} object.
35 * @param labelString a {@link java.lang.String} object.
36 * @param selection a {@link eu.etaxonomy.cdm.model.name.NameRelationshipType} object.
37 * @param style a int.
38 */
39 public NameRelationshipTypeComboElement(CdmFormFactory formFactory,
40 ICdmFormElement parentElement, String labelString, NameRelationshipType selection, int style) {
41 super(formFactory, parentElement, labelString, selection, VISIBLE_ITEMS, style);
42 }
43
44 /** {@inheritDoc} */
45 @Override
46 protected List<NameRelationshipType> preferredTerms() {
47 return getTermManager().getPreferredNameRelationshipTypes();
48 }
49 }