aboutsummaryrefslogtreecommitdiff
path: root/src/IvyMessageListener.java
diff options
context:
space:
mode:
authorjestin2000-08-11 09:15:47 +0000
committerjestin2000-08-11 09:15:47 +0000
commita5ca9fd3f54783b7f9371d69574660f29fe0d10f (patch)
tree850cbfec003efde7a1a39085bb91d451265e9603 /src/IvyMessageListener.java
parentedeec74732762754557b61219ef52d4e8b105759 (diff)
downloadivy-java-a5ca9fd3f54783b7f9371d69574660f29fe0d10f.zip
ivy-java-a5ca9fd3f54783b7f9371d69574660f29fe0d10f.tar.gz
ivy-java-a5ca9fd3f54783b7f9371d69574660f29fe0d10f.tar.bz2
ivy-java-a5ca9fd3f54783b7f9371d69574660f29fe0d10f.tar.xz
Probe is the java implementation of ivyprobe(1). It supports
the same syntax.
Diffstat (limited to 'src/IvyMessageListener.java')
-rwxr-xr-xsrc/IvyMessageListener.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/IvyMessageListener.java b/src/IvyMessageListener.java
index c0bfde4..e960afb 100755
--- a/src/IvyMessageListener.java
+++ b/src/IvyMessageListener.java
@@ -1,6 +1,20 @@
package fr.dgac.ivy;
+/**
+ * this interface specifies the methods of an IvyMessageListener
+ *
+ * @author François-Régis Colin
+ * @author Yannick Jestin
+ * @author <a href="http://www.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
+ *
+ */
+
public interface IvyMessageListener extends java.util.EventListener
{
+ /**
+ * this callback is invoked when a message has been received
+ * @param client the peer who sent the message
+ * @param args the array of string, on string for each subregexp
+ */
public abstract void receive(IvyClient client, String[] args);
}