Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbbokowski2005-08-17 05:53:03 +0000
committerbbokowski2005-08-17 05:53:03 +0000
commitbbcd1980d731bdbd2793eb4068731c71d6edeff0 (patch)
tree2f0c3daa2afedebf8e2ee84581aacae90bf9d7e4
parentc2be9b547b35085ce5fcaa29b4536dac9def8ea7 (diff)
downloadorg.eclipse.ecf-bbcd1980d731bdbd2793eb4068731c71d6edeff0.tar.gz
org.eclipse.ecf-bbcd1980d731bdbd2793eb4068731c71d6edeff0.tar.xz
org.eclipse.ecf-bbcd1980d731bdbd2793eb4068731c71d6edeff0.zip
Added clarification in Javadoc of IIdentifiable: IDs should be unique within their namespace
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IIdentifiable.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IIdentifiable.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IIdentifiable.java
index 23ed6654c..2dbff8c7c 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IIdentifiable.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/IIdentifiable.java
@@ -19,8 +19,9 @@ import org.eclipse.ecf.core.identity.ID;
public interface IIdentifiable {
/**
- * Get the ID for this 'identifiable' object
- * @return ID the ID for this identifiable object
+ * Return the ID for this 'identifiable' object. The returned ID should be
+ * unique within its namespace.
+ * @return the ID for this identifiable object
*/
public ID getID();
}

Back to the top