diff options
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); } |