Project

General

Profile

Download (338 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.cdm.model.common;
2

    
3
import java.util.UUID;
4

    
5
/**
6
 * PLEASE LOOK AT NameRelationship and TaxonRelationship
7
 * @author m.doering
8
 *
9
 * @param <T>
10
 */
11
public interface IRelated<T extends RelationshipBase> {
12
	/**
13
	 * @param relation
14
	 */
15
	public void addRelationship(T relation);
16
	
17
	/**
18
	 * 
19
	 */
20
	public UUID getUuid();
21
}
(15-15/39)