Project

General

Profile

Download (3.12 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2009 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
package eu.etaxonomy.taxeditor.ui.section.vocabulary;
11

    
12
import java.net.URISyntaxException;
13

    
14
import eu.etaxonomy.cdm.model.common.Language;
15
import eu.etaxonomy.cdm.model.common.Representation;
16
import eu.etaxonomy.cdm.model.location.NamedArea;
17
import eu.etaxonomy.cdm.model.location.NamedAreaLevel;
18
import eu.etaxonomy.cdm.model.location.NamedAreaType;
19
import eu.etaxonomy.taxeditor.ui.combo.TermComboElement;
20
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
21
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
22
import eu.etaxonomy.taxeditor.ui.element.TimePeriodElement;
23

    
24
/**
25
 * @author l.morris
26
 * @date 20 Dec 2011
27
 *
28
 */
29
public class NamedAreaDetailElement extends DefinedTermDetailElement<NamedArea> {
30

    
31
	// level
32
	// type
33
	private TermComboElement<NamedAreaType> combo_namedAreaType;
34
	private TermComboElement<NamedAreaLevel> combo_namedAreaLevel;
35
	// validPeriod
36
	private TimePeriodElement timePeriod_validPeriod;
37
	
38
	/**
39
	 * @param formFactory
40
	 * @param formElement
41
	 */
42
	public NamedAreaDetailElement(CdmFormFactory formFactory,
43
			ICdmFormElement formElement) {
44
		super(formFactory, formElement);
45
	}
46
	
47
	public void createControls(ICdmFormElement formElement, NamedArea entity, int style) {
48
		super.createControls(formElement, entity, style);
49
		
50
		timePeriod_validPeriod = formFactory.createTimePeriodElement(formElement, "Valid Period", getEntity().getValidPeriod(), style);
51
		combo_namedAreaType = formFactory.createTermComboElement(NamedAreaType.class, formElement, "Named Area Type", getEntity().getType(), style);
52
		combo_namedAreaLevel = formFactory.createTermComboElement(NamedAreaLevel.class, formElement, "Named Area Level", getEntity().getLevel(), style);
53
		
54
	}
55

    
56
	/* (non-Javadoc)
57
	 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement#handleEvent(java.lang.Object)
58
	 */
59
	@Override
60
	public void handleEvent(Object eventSource) {
61
		
62
		if (eventSource == text_label) {
63
			getEntity().setLabel(text_label.getText());
64
			getEntity().setTitleCache(null);
65
		} else if (eventSource == text_description) {
66
			
67
			getEntity().getRepresentation(Language.DEFAULT()).setText(text_description.getText());
68
			
69
		} else if (eventSource == uri_uri) {
70
			
71
			try {
72
				getEntity().setUri(uri_uri.getUri());
73
			} catch (URISyntaxException e) {
74
				
75
				e.printStackTrace();
76
			}
77
		} else if (eventSource == text_abbreviatedLabel) {
78
			getEntity().getRepresentation(Language.DEFAULT()).setAbbreviatedLabel(text_abbreviatedLabel.getText());
79
		} else if (eventSource == timePeriod_validPeriod) {
80
			getEntity().setValidPeriod(timePeriod_validPeriod.getTimePeriod());
81
		} else if (eventSource == combo_namedAreaType) {
82
			getEntity().setType(combo_namedAreaType.getSelection());
83
		} else if (eventSource == combo_namedAreaLevel) {
84
			getEntity().setLevel(combo_namedAreaLevel.getSelection());
85
		}
86
		
87
		
88
	}
89

    
90
	
91
}
(4-4/8)