diff options
author | jestin | 2000-08-11 09:15:47 +0000 |
---|---|---|
committer | jestin | 2000-08-11 09:15:47 +0000 |
commit | a5ca9fd3f54783b7f9371d69574660f29fe0d10f (patch) | |
tree | 850cbfec003efde7a1a39085bb91d451265e9603 /src/IvyMessageListener.java | |
parent | edeec74732762754557b61219ef52d4e8b105759 (diff) | |
download | ivy-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-x | src/IvyMessageListener.java | 14 |
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); } |