Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-05-07 16:09:22 +0000
committerslewis2007-05-07 16:09:22 +0000
commit7efe049f839d48aa95de77dbbf9cc135d753c36e (patch)
treef88b834ce8e18e941a65350f62ab0129d2617758 /framework/bundles/org.eclipse.ecf.datashare
parent02d1cad8e45e947ddfe1ac6622ca0fcd502ccb5a (diff)
downloadorg.eclipse.ecf-7efe049f839d48aa95de77dbbf9cc135d753c36e.tar.gz
org.eclipse.ecf-7efe049f839d48aa95de77dbbf9cc135d753c36e.tar.xz
org.eclipse.ecf-7efe049f839d48aa95de77dbbf9cc135d753c36e.zip
Javadocs fixes
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.datashare')
-rw-r--r--framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/AbstractShare.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/AbstractShare.java b/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/AbstractShare.java
index 335acc9ae..bad3dfb36 100644
--- a/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/AbstractShare.java
+++ b/framework/bundles/org.eclipse.ecf.datashare/src/org/eclipse/ecf/datashare/AbstractShare.java
@@ -24,7 +24,7 @@ import org.eclipse.ecf.datashare.events.IChannelMessageEvent;
* Abstract class for sharing data using {@link IChannel}. Subclasses should
* be created as desired to share objects of different types. Note that
* to send data, subclasses can use {@link #sendMessage(ID, byte[])}, and
- * to receive data subclasses must implement {@link #handleMessage(byte[])}
+ * to receive data subclasses must implement {@link #handleMessage(ID, byte[])}
* or {@link #handleChannelEvent(IChannelEvent)}.
*/
public abstract class AbstractShare {
@@ -41,7 +41,7 @@ public abstract class AbstractShare {
* Handle reception of an IChannelEvent.
* @param event the IChannelEvent received. This implementation
* detects instances of {@link IChannelMessageEvent} and
- * calls {@link #handleMessage(byte[])} if found. All other
+ * calls {@link #handleMessage(ID, byte[])} if found. All other
* channel events are ignored. Subclasses may override to detect
* and respond to other channel events as desired.
*/

Back to the top