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