Project

General

Profile

Download (758 Bytes) Statistics
| Branch: | Tag: | Revision:
1 729887cf n.hoffmann
/**
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 78222507 n.hoffmann
package eu.etaxonomy.taxeditor.ui.element;
11 729887cf n.hoffmann
12 6504f35c Patric Plitzner
13 729887cf n.hoffmann
14
/**
15 3be6ef3e n.hoffmann
 * Any composite that represent a cdm entity should implement
16 729887cf n.hoffmann
 * this interface. Selection of CdmEntity data will rely on this
17
 * interface.
18 3be6ef3e n.hoffmann
 *
19 729887cf n.hoffmann
 * @author n.hoffmann
20
 * @created Feb 16, 2010
21
 * @version 1.0
22
 */
23 74b9f670 n.hoffmann
public interface IEntityElement<ENTITY> extends ICdmFormElement, ISelectable {
24 729887cf n.hoffmann
25
	/**
26
	 * Returns the entity of this composite.
27 3be6ef3e n.hoffmann
	 *
28
	 * @param <ENTITY> a ENTITY object.
29
	 * @return a ENTITY object.
30 729887cf n.hoffmann
	 */
31 74b9f670 n.hoffmann
	public ENTITY getEntity();
32 729887cf n.hoffmann
}