Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IIDEntry.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IIDEntry.java b/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IIDEntry.java
index 6725ed9f4..2291e13b7 100644
--- a/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IIDEntry.java
+++ b/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IIDEntry.java
@@ -44,7 +44,8 @@ public interface IIDEntry {
* @param key the String key for retrieving associates. Must not be <code>null</code>.
*
* @return IIDEntry[] of associated IIDEntry instances that have previously been successfully stored via {@link #putAssociate(java.lang.String,IIDEntry,boolean)}.
- * If no IIDEntries have been previously stored with the given key, an empty array will be returned. Will not return <code>null</code>.
+ * If no IIDEntries have been previously stored with the given key, an empty array will be returned. Will not return <code>null</code>. Note
+ * that the order of the returned IIDEntrys will not necessarily correspond to the order added via {@link #putAssociate(String, IIDEntry, boolean)}.
*/
public IIDEntry[] getAssociates(String key);

Back to the top