Project

General

Profile

Download (1.48 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2013 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.occurrence.media;
11

    
12
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
13
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
14
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
15
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
16

    
17
/**
18
 * @author pplitzner
19
 * @date 16.12.2013
20
 *
21
 */
22
public class LivingPlantPhotoGeneralDetailElement extends AbstractCdmDetailElement<DerivedUnitFacade> {
23

    
24
    /**
25
     * @param formFactory
26
     * @param formElement
27
     */
28
    public LivingPlantPhotoGeneralDetailElement(CdmFormFactory formFactory, ICdmFormElement formElement) {
29
        super(formFactory, formElement);
30
    }
31

    
32
    /*
33
     * (non-Javadoc)
34
     *
35
     * @see
36
     * eu.etaxonomy.taxeditor.section.AbstractCdmDetailElement#createControls
37
     * (eu.etaxonomy.taxeditor.forms.ICdmFormElement, java.lang.Object, int)
38
     */
39
    @Override
40
    protected void createControls(ICdmFormElement formElement, DerivedUnitFacade entity, int style) {
41

    
42
    }
43

    
44
    /*
45
     * (non-Javadoc)
46
     *
47
     * @see
48
     * eu.etaxonomy.taxeditor.section.AbstractCdmDetailElement#handleEvent(java
49
     * .lang.Object)
50
     */
51
    @Override
52
    public void handleEvent(Object eventSource) {
53
    }
54

    
55
}
(1-1/6)