Committing changes to definedtermeditor after merge from branch
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / vocabulary / NamedAreaDetailElement.java
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.forms.CdmFormFactory;
21 import eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement;
22 import eu.etaxonomy.taxeditor.ui.forms.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 Representation representation = getEntity().getRepresentation(Language.DEFAULT());
68 representation.setText(text_description.getText());
69
70 } else if (eventSource == uri_uri) {
71
72 try {
73 getEntity().setUri(uri_uri.getUri());
74 } catch (URISyntaxException e) {
75
76 e.printStackTrace();
77 }
78 } else if (eventSource == timePeriod_validPeriod) {
79 getEntity().setValidPeriod(timePeriod_validPeriod.getTimePeriod());
80 } else if (eventSource == combo_namedAreaType) {
81 getEntity().setType(combo_namedAreaType.getSelection());
82 } else if (eventSource == combo_namedAreaLevel) {
83 getEntity().setLevel(combo_namedAreaLevel.getSelection());
84 }
85
86
87 }
88
89
90 }