Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptrevithick2004-12-14 23:49:24 +0000
committerptrevithick2004-12-14 23:49:24 +0000
commit4f03801629062333aa013470c95441735d86a01d (patch)
treeb2be1e3d56ad316f84f0cdba3d6f94c61e26d90b
parent42526bc4872afb9d94511c59483ec86ea35ef282 (diff)
downloadorg.eclipse.ecf-4f03801629062333aa013470c95441735d86a01d.tar.gz
org.eclipse.ecf-4f03801629062333aa013470c95441735d86a01d.tar.xz
org.eclipse.ecf-4f03801629062333aa013470c95441735d86a01d.zip
Missing 'data' parameter description in sendMessage Javadoc
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java52
1 files changed, 26 insertions, 26 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java
index 514b92547..65755d9df 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java
@@ -131,34 +131,34 @@ public interface ISharedObjectContext {
*/
public void sendDispose(ID toContainerID) throws IOException;
/**
- * Send arbitrary message to remote instance of the ISharedObject with same
- * ID as this instance (ISharedObject.getID() returns same unique value).
- * This method allows ISharedObject instances to send arbitrary data to one
- * or more remote replicas of this ISharedObject.
- *
- * @param toContainerID
- * the ID of the remote ISharedObjectContainer that is the target
- * container for the message request. If this parameter is null,
- * the request is assumed to be made of <b>all </b> remote
- * containers currently in the given group (excepting the local
- * container).
- *
- * @throws IOException
- * thrown if message cannot be sent by container, or if data
- * cannot be serialized
- */
- public void sendMessage(ID toContainerID, Object data)
- throws IOException;
+ * Send arbitrary message to remote instance of the ISharedObject with same
+ * ID as this instance (ISharedObject.getID() returns same unique value).
+ * This method allows ISharedObject instances to send arbitrary data to one
+ * or more remote replicas of this ISharedObject.
+ *
+ * @param toContainerID
+ * the ID of the remote ISharedObjectContainer that is the target
+ * container for the message request. If this parameter is null,
+ * the request is assumed to be made of <b>all </b> remote
+ * containers currently in the given group (excepting the local
+ * container).
+ * @param data
+ * arbitrary message object. Must be serializable.
+ * @throws IOException
+ * thrown if message cannot be sent by container, or if data
+ * cannot be serialized
+ */
+ public void sendMessage(ID toContainerID, Object data) throws IOException;
/**
- * Returns an object which is an instance of the given class associated with
- * this object.
- *
- * @param clazz
- * the adapter class to lookup
- * @return Object a object castable to the given class, or null if this
- * object does not have an adapter for the given class
- */
+ * Returns an object which is an instance of the given class associated with
+ * this object.
+ *
+ * @param clazz
+ * the adapter class to lookup
+ * @return Object a object castable to the given class, or null if this
+ * object does not have an adapter for the given class
+ */
public Object getAdapter(Class clazz);
/**

Back to the top