Project

General

Profile

Download (3.99 KB) Statistics
| Branch: | Tag: | Revision:
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

    
10
package eu.etaxonomy.taxeditor.ui.section.description;
11

    
12
import java.math.BigDecimal;
13
import java.util.ArrayList;
14
import java.util.Set;
15

    
16
import org.eclipse.swt.events.SelectionListener;
17

    
18
import eu.etaxonomy.cdm.model.description.StatisticalMeasure;
19
import eu.etaxonomy.cdm.model.description.StatisticalMeasurementValue;
20
import eu.etaxonomy.cdm.model.term.TermType;
21
import eu.etaxonomy.taxeditor.store.StoreUtil;
22
import eu.etaxonomy.taxeditor.ui.combo.term.TermComboElement;
23
import eu.etaxonomy.taxeditor.ui.element.AbstractFormSection;
24
import eu.etaxonomy.taxeditor.ui.element.BigDecimalWithLabelElement;
25
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
26
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
27
import eu.etaxonomy.taxeditor.ui.element.LayoutConstants;
28
import eu.etaxonomy.taxeditor.ui.section.AbstractEntityCollectionElement;
29

    
30
/**
31
 * <p>StatisticalMeasurementValueElement class.</p>
32
 *
33
 * @author n.hoffmann
34
 * @created Sep 15, 2010
35
 */
36
public class StatisticalMeasurementValueElement extends
37
		AbstractEntityCollectionElement<StatisticalMeasurementValue> {
38

    
39
	private BigDecimalWithLabelElement number_value;
40
	private TermComboElement<StatisticalMeasure> combo_type;
41
	private ModifierSection section_modifiers;
42

    
43
	/**
44
	 * <p>Constructor for StatisticalMeasurementValueElement.</p>
45
	 *
46
	 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
47
	 * @param section a {@link eu.etaxonomy.taxeditor.ui.element.AbstractFormSection} object.
48
	 * @param entity a {@link eu.etaxonomy.cdm.model.description.StatisticalMeasurementValue} object.
49
	 * @param removeListener a {@link org.eclipse.swt.events.SelectionListener} object.
50
	 * @param style a int.
51
	 */
52
	public StatisticalMeasurementValueElement(CdmFormFactory formFactory,
53
			AbstractFormSection section, StatisticalMeasurementValue entity,
54
			SelectionListener removeListener, int style) {
55
		super(formFactory, section, entity, removeListener, null, style);
56
	}
57

    
58
	@Override
59
	public void setEntity(StatisticalMeasurementValue entity) {
60
		this.entity = entity;
61
		if (combo_type != null){
62
			Set<StatisticalMeasure> statisiticalMeasures = getEntity().getQuantitativeData().getFeature().getRecommendedStatisticalMeasures();
63
	        combo_type.setTerms(new ArrayList<StatisticalMeasure>(statisiticalMeasures));
64
			combo_type.setSelection(entity.getType());
65
			number_value.setNumber(entity.getValue());
66
			section_modifiers.setEntity(entity);
67
		}
68
	}
69

    
70
	@Override
71
	public void createControls(ICdmFormElement element, int style) {
72
		number_value = formFactory.createBigDecimalTextWithLabelElement(element, "Value", 0, style);
73
		combo_type = formFactory.createDefinedTermComboElement(TermType.StatisticalMeasure, element, "Statistical Measure", null, style);
74
		section_modifiers = formFactory.createModifierSection(element, StoreUtil.getSectionStyle(ModifierSection.class, StatisticalMeasurementValue.class.getCanonicalName()));
75
		section_modifiers.setLayoutData(LayoutConstants.FILL_HORIZONTALLY(2, 1));
76
		if (entity != null){
77
			setEntity(entity);
78
		}
79
	}
80

    
81
	@Override
82
	public void handleEvent(Object eventSource) {
83
		if(eventSource == number_value){
84
			BigDecimal bigDecimalNumber = number_value.getBigDecimal();
85
//			if(bigDecimalNumber==null){
86
//			    String zero = "0.0";
87
//			    bigDecimalNumber = new BigDecimal(zero);
88
//			    number_value.setText(zero);
89
//			}
90
            getEntity().setValue(bigDecimalNumber);
91
		}
92
		else if(eventSource == combo_type){
93
			getEntity().setType(combo_type.getSelection());
94
			combo_type.removeEmptyElement();
95
		}
96
	}
97

    
98
//	@Override
99
//	public void setEnabled(boolean enabled) {
100
//		combo_type.setEnabled(enabled);
101
//		number_value.setEnabled(enabled);
102
//		section_modifiers.setEnabled(enabled);
103
//	}
104
//
105
//	@Override
106
//	public boolean isEnabled() {
107
//		return combo_type.isEnabled();
108
//	}
109
}
(25-25/26)