Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-09-17 04:35:27 +0000
committerslewis2007-09-17 04:35:27 +0000
commit98d14c9f4b677568631db8619472363f5758e8ca (patch)
tree742533433e3ce209f3977faa0aba97280f149872 /framework/bundles/org.eclipse.ecf.provider
parent91393cc0abbfda8001c441fd1b6906beafdd21b6 (diff)
downloadorg.eclipse.ecf-98d14c9f4b677568631db8619472363f5758e8ca.tar.gz
org.eclipse.ecf-98d14c9f4b677568631db8619472363f5758e8ca.tar.xz
org.eclipse.ecf-98d14c9f4b677568631db8619472363f5758e8ca.zip
Formatting changes and javadocs additions for ClientSOContainer
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.provider')
-rw-r--r--framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/generic/ClientSOContainer.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/generic/ClientSOContainer.java b/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/generic/ClientSOContainer.java
index ebf0f2235..001d259b1 100644
--- a/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/generic/ClientSOContainer.java
+++ b/framework/bundles/org.eclipse.ecf.provider/src/org/eclipse/ecf/provider/generic/ClientSOContainer.java
@@ -327,9 +327,10 @@ public abstract class ClientSOContainer extends SOContainer implements ISharedOb
}
/**
- * Create connection instance. This method is called by {@link #connect(ID, IConnectContext)} prior to
- * calling the {@link IConnection#connect(ID, Object, int)} method.
- * @param targetID the targetID to connect to, from the first parameter to {@link #connect(ID, IConnectContext)}
+ * Create connection instance. This method is called by {@link ClientSOContainer#connect(ID, IConnectContext)}. Following
+ * a return from this method, the new ISynchAsynchConnection instance's {@link IConnection#connect(ID, Object, int)} method is subsequently
+ * called.
+ * @param targetID the targetID to connect to. The value is the same as that passed into {@link ClientSOContainer#connect(ID, IConnectContext)}.
* @param data and data provided to the connection via the IConnectContext passed into the {@link #connect(ID, IConnectContext)}
* call.
* @return {@link ISynchAsynchConnection} a connection instance. Will not be <code>null</code>.

Back to the top