Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2004-12-05 02:54:04 +0000
committerslewis2004-12-05 02:54:04 +0000
commit7de026443882ff03dfceafd7e185445ee4752070 (patch)
tree6cbd80023f085b2d00202b12db682ac2037eee08
parent87791de674cf8a853e800b4d490abc950778b234 (diff)
downloadorg.eclipse.ecf-7de026443882ff03dfceafd7e185445ee4752070.tar.gz
org.eclipse.ecf-7de026443882ff03dfceafd7e185445ee4752070.tar.xz
org.eclipse.ecf-7de026443882ff03dfceafd7e185445ee4752070.zip
Updated documentation for SharedObjectContainerFactory class docs.
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
index 518825c65..cbf35c02a 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/SharedObjectContainerFactory.java
@@ -21,6 +21,17 @@ import org.eclipse.ecf.internal.impl.standalone.StandaloneContainer;
* Factory for creating {@link ISharedObjectContainer} instances. This
* class provides ECF clients an entry point to constructing {@link ISharedObjectContainer}
* instances.
+ * <br>
+ * <br>
+ * Here is an example use of the SharedObjectContainerFactory to construct an instance
+ * of the 'standalone' container (has no connection to other containers):
+ * <br><br>
+ * <code>
+ * ISharedObjectContainer container = <br>
+ * SharedObjectContainerFactory.makeSharedObjectContainer('standalone');
+ * <br><br>
+ * ...further use of container variable here...
+ * </code>
*
*/
public class SharedObjectContainerFactory {

Back to the top