Major changes to the cdmlib default term loading and initialization, plus indexing...
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / model / common / IRelated.java
index 70fc13c01b2f8704b0f168bd286d2d2e2e08b79d..5f7e1f132758e866ceea8c3b0402b217176c7415 100644 (file)
@@ -1,5 +1,22 @@
 package eu.etaxonomy.cdm.model.common;
 
+import java.util.UUID;
+
+/**
+ * PLEASE LOOK AT NameRelationship and TaxonRelationship
+ * @author m.doering
+ *
+ * @param <T>
+ */
 public interface IRelated<T extends RelationshipBase> {
+       /**
+        * @param relation
+        */
        public void addRelationship(T relation);
+       
+       /**
+        * 
+        */
+       public UUID getUuid();
+       
 }