Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptrevithick2004-12-15 05:01:25 +0000
committerptrevithick2004-12-15 05:01:25 +0000
commit2ac68ac18127d6394c237ba339f3592eccf867b3 (patch)
tree9442d0efa5110ece7f7e5672b72c996866b53b13
parent4f03801629062333aa013470c95441735d86a01d (diff)
downloadorg.eclipse.ecf-2ac68ac18127d6394c237ba339f3592eccf867b3.tar.gz
org.eclipse.ecf-2ac68ac18127d6394c237ba339f3592eccf867b3.tar.xz
org.eclipse.ecf-2ac68ac18127d6394c237ba339f3592eccf867b3.zip
Removed the phrase (ISharedObject.getID() returns same unique
* value) from sendCreate, sendMessage and sendDispose javadoc comments
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/ISharedObjectContext.java48
1 files changed, 23 insertions, 25 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 65755d9df..4f4c0c381 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
@@ -92,32 +92,31 @@ public interface ISharedObjectContext {
public ID[] getGroupMemberIDs();
/**
- * Send message to create a remote instance of an ISharedObject with the
- * same ID as this instance (ISharedObject.getID() returns same unique
- * value). This method allows ISharedObject instances (with a reference to a
- * valid ISharedObjectContext) to send messages to remote containers asking
- * them to create an instance of a new ISharedObject. The given
- * ISharedObjectDescription provides the specification of the new object.
- *
- * @param toContainerID
- * the ID of the remote ISharedObjectContainer that is the target
- * of the create 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 sd
- * the SharedObjectDescription describing the class, constructor
- * and other properties to be associated with the new instance
- *
- * @throws IOException
- * thrown if message cannot be sent by container
- */
+ * Send message to create a remote instance of an ISharedObject with the
+ * same ID as this instance. This method allows ISharedObject instances
+ * (with a reference to a valid ISharedObjectContext) to send messages to
+ * remote containers asking them to create an instance of a new
+ * ISharedObject. The given ISharedObjectDescription provides the
+ * specification of the new object.
+ *
+ * @param toContainerID
+ * the ID of the remote ISharedObjectContainer that is the target
+ * of the create 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 sd
+ * the SharedObjectDescription describing the class, constructor
+ * and other properties to be associated with the new instance
+ *
+ * @throws IOException
+ * thrown if message cannot be sent by container
+ */
public void sendCreate(ID toContainerID, SharedObjectDescription sd)
throws IOException;
/**
* Send message to dispose of a remote instance of the ISharedObject with
- * same ID as this instance (ISharedObject.getID() returns same unique
- * value). This method allows ISharedObject instances to control the
+ * same ID as this instance. This method allows ISharedObject instances to control the
* destruction of remote replicas.
*
* @param toContainerID
@@ -132,9 +131,8 @@ 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.
+ * ID as this instance. 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

Back to the top