Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2008-05-20 16:35:08 +0000
committerslewis2008-05-20 16:35:08 +0000
commit3f4cb880de2857fb6e527a53637b396be77d5be3 (patch)
tree907cb15abe96fc583395276f80233dd5268a810a /framework/bundles/org.eclipse.ecf.storage
parent64a1faa747962cfb652d9e281d00848197982f95 (diff)
downloadorg.eclipse.ecf-3f4cb880de2857fb6e527a53637b396be77d5be3.tar.gz
org.eclipse.ecf-3f4cb880de2857fb6e527a53637b396be77d5be3.tar.xz
org.eclipse.ecf-3f4cb880de2857fb6e527a53637b396be77d5be3.zip
Additions to ContainerStore/ContainerEntry
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.storage')
-rw-r--r--framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IContainerStore.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IContainerStore.java b/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IContainerStore.java
index 43f005d53..2e7ec904f 100644
--- a/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IContainerStore.java
+++ b/framework/bundles/org.eclipse.ecf.storage/src/org/eclipse/ecf/storage/IContainerStore.java
@@ -36,7 +36,19 @@ public interface IContainerStore extends IAdaptable {
*/
public IContainerEntry store(IStorableContainerAdapter containerAdapter);
+ /**
+ * Retrieve an IContainerEntry for a given container ID.
+ *
+ * @param containerID the containerID to retrieve. Must not be <code>null</code>.
+ * @return IContainerEntry found, or <code>null</code> if container with given ID not found.
+ */
public IContainerEntry retrieve(ID containerID);
+ /**
+ * Retrieve an IContainerEntry for a given {@link IIDEntry}.
+ *
+ * @param idEntry the idEntry to retrieve. Must not be <code>null</code>.
+ * @return IContainerEntry found, or <code>null</code> if container with given ID not found.
+ */
public IContainerEntry retrieve(IIDEntry idEntry);
}

Back to the top