Project

General

Profile

Download (1.62 KB) Statistics
| Branch: | Tag: | Revision:
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.description.StatisticalMeasure;
16
import eu.etaxonomy.taxeditor.singlesource.ui.forms.CdmFormFactoryFacade;
17
import eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement;
18

    
19
/**
20
 * <p>StatisticalMeasureComboElement class.</p>
21
 *
22
 * @author n.hoffmann
23
 * @created Sep 15, 2010
24
 * @version 1.0
25
 */
26
public class StatisticalMeasureComboElement extends AbstractTermComboElement<StatisticalMeasure> {
27

    
28
	private static final int VISIBLE_ITEMS = 5;
29
	
30
	/**
31
	 * <p>Constructor for StatisticalMeasureComboElement.</p>
32
	 *
33
	 * @param formFactory a {@link eu.etaxonomy.taxeditor.singlesource.ui.forms.CdmFormFactoryFacade} 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.description.StatisticalMeasure} object.
37
	 * @param style a int.
38
	 */
39
	public StatisticalMeasureComboElement(CdmFormFactoryFacade formFactory,
40
			ICdmFormElement parentElement, String labelString,
41
			StatisticalMeasure selection, int style) {
42
		super(formFactory, parentElement, labelString, selection, VISIBLE_ITEMS, style);
43
	}
44
	/** {@inheritDoc} */
45
	@Override
46
	protected List<StatisticalMeasure> preferredTerms() {
47
		return getTermManager().getPreferredStatisticalMeasures();
48
	}
49
}
(27-27/27)