From 839f632fcf808f21098937fd95061b78a41de448 Mon Sep 17 00:00:00 2001 From: jestin Date: Tue, 22 Nov 2005 15:52:19 +0000 Subject: javadoc modifs --- src/Ivy.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/Ivy.java') diff --git a/src/Ivy.java b/src/Ivy.java index e97b29a..e8ea0b2 100755 --- a/src/Ivy.java +++ b/src/Ivy.java @@ -303,14 +303,14 @@ public class Ivy implements Runnable { /** * Toggles the sending of messages to oneself, the remote client's * IvyMessageListeners are processed first, and ourself afterwards. - * @param boolean true if you want to send the message to yourself. Default + * @param b true if you want to send the message to yourself. Default * is false * @since 1.2.4 */ public void sendToSelf(boolean b) {doSendToSelf=b;} /** - * @param boolean do I send message to myself ? + * do I send messsages to myself ? * @since 1.2.4 */ public boolean isSendToSelf() {return doSendToSelf;} @@ -324,7 +324,7 @@ public class Ivy implements Runnable { /** * Toggles the encoding/decoding of messages to prevent bugs related to the * presence of a "\n" - * @param boolean true if you want to enforce encoding of newlines. Default + * @param b true if you want to enforce encoding of newlines. Default * is false. Every receiver will have to decode newlines * @since 1.2.5 * The default escape character is a ESC 0x1A @@ -368,7 +368,7 @@ public class Ivy implements Runnable { *
the Ivy agent B performs
b2.sendMsg("Hello world");
*
a thread in A will uun the callback cb with its second argument set * to a array of String, with one single element, "world" - * @param regexp a perl regular expression, groups are done with parenthesis + * @param sregexp a perl regular expression, groups are done with parenthesis * @param callback any objects implementing the IvyMessageListener * interface, on the AWT/Swing framework * @return the id of the regular expression @@ -387,7 +387,7 @@ public class Ivy implements Runnable { * another one sent before * * @since 1.2.4 - * @param regexp a perl compatible regular expression, groups are done with parenthesis + * @param sregexp a perl compatible regular expression, groups are done with parenthesis * @param callback any objects implementing the IvyMessageListener * interface, on the AWT/Swing framework * @return the int ID of the regular expression. @@ -409,7 +409,7 @@ public class Ivy implements Runnable { *
a thread in A will uun the callback cb with its second argument set * to a array of String, with one single element, "world" * @since 1.2.4 - * @param regexp a perl regular expression, groups are done with parenthesis + * @param sregexp a perl regular expression, groups are done with parenthesis * @param callback any objects implementing the IvyMessageListener * interface, on the AWT/Swing framework * @param async if true, each callback will be run in a separate thread, @@ -438,7 +438,7 @@ public class Ivy implements Runnable { * The callback will be executed once and only once, and the agent will * unsubscribe * @since 1.2.8 - * @param regexp a perl regular expression, groups are done with parenthesis + * @param sregexp a perl regular expression, groups are done with parenthesis * @param callback any objects implementing the IvyMessageListener * interface, on the AWT/Swing framework * @return the id of the regular expression @@ -473,7 +473,7 @@ public class Ivy implements Runnable { * * @return a boolean, true if the regexp existed, false otherwise or * whenever an exception occured during unbinding - * @param String the string for the regular expression + * @param re the string for the regular expression */ public boolean unBindMsg(String re) { return selfIvyClient.unBindMsg(re); } -- cgit v1.1