Project

General

Profile

Download (1.44 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.dna;
11

    
12
import eu.etaxonomy.cdm.model.molecular.DnaSample;
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 DnaSampleGeneralDetailElement extends AbstractCdmDetailElement<DnaSample> {
23

    
24
    /**
25
     * @param formFactory
26
     * @param formElement
27
     */
28
    public DnaSampleGeneralDetailElement(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, DnaSample entity, int style) {
41
    }
42

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