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 ++++++++-------- src/IvyBindListener.java | 4 ++-- src/Makefile | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) 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); } diff --git a/src/IvyBindListener.java b/src/IvyBindListener.java index 6fc17e1..1316a8a 100644 --- a/src/IvyBindListener.java +++ b/src/IvyBindListener.java @@ -16,7 +16,7 @@ public interface IvyBindListener extends java.util.EventListener { /** * invoked when a Ivy Client performs a bind * @param client the peer - * @param int the regexp ID + * @param id the regexp ID * @param regexp the regexp */ void bindPerformed(IvyClient client,int id, String regexp); @@ -24,7 +24,7 @@ public interface IvyBindListener extends java.util.EventListener { /** * invoked when a Ivy Client performs a unbind * @param client the peer - * @param int the regexp ID + * @param id the regexp ID * @param regexp the regexp */ void unbindPerformed(IvyClient client,int id,String regexp); diff --git a/src/Makefile b/src/Makefile index 48b1c59..35f7b02 100644 --- a/src/Makefile +++ b/src/Makefile @@ -32,6 +32,6 @@ docs: rm -fR $(DOCS)/*html rm -fR $(DOCS)/*css rm -fR $(DOCS)/fr/dgac/ivy/*html - #javadoc $(CLASSPATH) -d $(DOCS) $(SRCS) - javadoc -d $(DOCS) $(SRCS) + javadoc $(CLASSPATH) -d $(DOCS) $(SRCS) + #javadoc -d $(DOCS) $(SRCS) rm -f $(DOCS)/package-list -- cgit v1.1