merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / description / GeoScopeElement.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.section.description;
12
13 import org.eclipse.swt.events.SelectionListener;
14
15 import eu.etaxonomy.cdm.model.location.NamedArea;
16 import eu.etaxonomy.taxeditor.ui.campanula.compatibility.ICdmFormElement;
17 import eu.etaxonomy.taxeditor.ui.element.AbstractFormSection;
18 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
19 import eu.etaxonomy.taxeditor.ui.section.AbstractEntityCollectionElement;
20
21 /**
22 * <p>GeoScopeElement class.</p>
23 *
24 * @author n.hoffmann
25 * @created Sep 17, 2010
26 * @version 1.0
27 */
28 public class GeoScopeElement extends AbstractEntityCollectionElement<NamedArea> {
29
30 /**
31 * <p>Constructor for GeoScopeElement.</p>
32 *
33 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
34 * @param section a {@link eu.etaxonomy.taxeditor.ui.element.AbstractFormSection} object.
35 * @param entity a {@link eu.etaxonomy.cdm.model.location.NamedArea} object.
36 * @param removeListener a {@link org.eclipse.swt.events.SelectionListener} object.
37 * @param style a int.
38 */
39 public GeoScopeElement(CdmFormFactory formFactory,
40 AbstractFormSection section, NamedArea entity,
41 SelectionListener removeListener, int style) {
42 super(formFactory, section, entity, removeListener, null, style);
43 }
44
45 /** {@inheritDoc} */
46 @Override
47 public void setEntity(NamedArea entity) {
48
49 }
50
51 /** {@inheritDoc} */
52 @Override
53 public void createControls(ICdmFormElement element, int style) {
54
55 }
56
57 /** {@inheritDoc} */
58 @Override
59 public void handleEvent(Object eventSource) {
60 }
61 }