diff options
| author | bbokowski | 2005-08-17 05:53:03 +0000 |
|---|---|---|
| committer | bbokowski | 2005-08-17 05:53:03 +0000 |
| commit | bbcd1980d731bdbd2793eb4068731c71d6edeff0 (patch) | |
| tree | 2f0c3daa2afedebf8e2ee84581aacae90bf9d7e4 | |
| parent | c2be9b547b35085ce5fcaa29b4536dac9def8ea7 (diff) | |
| download | org.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.java | 5 |
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(); } |
