Project

General

Profile

Download (1.52 KB) Statistics
| Branch: | Tag: | Revision:
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 eu.etaxonomy.cdm.model.description.DescriptionElementBase;
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
 * <p>DescriptionElementDetailElement class.</p>
19
 *
20
 * @author n.hoffmann
21
 * @created Mar 5, 2010
22
 * @version 1.0
23
 */
24
public class DescriptionElementDetailElement extends
25
		AbstractCdmDetailElement<DescriptionElementBase> {
26

    
27
	/**
28
	 * <p>Constructor for DescriptionElementDetailElement.</p>
29
	 *
30
	 * @param cdmFormFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
31
	 * @param formElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
32
	 * @param style a int.
33
	 */
34
	public DescriptionElementDetailElement(CdmFormFactory cdmFormFactory,
35
			ICdmFormElement formElement, int style) {
36
		super(cdmFormFactory, formElement);
37
	}
38
	
39
	/** {@inheritDoc} */
40
	@Override
41
	protected void createControls(ICdmFormElement formElement, DescriptionElementBase entity, int style) {
42
		formFactory.createDetailedDescriptionDetailElement(formElement, entity, style);
43
	}
44
	
45
	/** {@inheritDoc} */
46
	@Override
47
	public void handleEvent(Object eventSource) {
48
		
49
	}
50
}
(5-5/25)