diff options
Diffstat (limited to 'src/IvyApplicationAdapter.java')
-rwxr-xr-x | src/IvyApplicationAdapter.java | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/src/IvyApplicationAdapter.java b/src/IvyApplicationAdapter.java index 16491b5..af198dd 100755 --- a/src/IvyApplicationAdapter.java +++ b/src/IvyApplicationAdapter.java @@ -1,14 +1,20 @@ -/* -** -** BusCallbackAdapter -** -** la même pratique que pour l awt 1.1. Quand on ne veut implémenter qu une -** des trois fonctions membres, il suffit d étendre l'adapter -** pas de constructeur ... c'est donc une class abstraite -*/ - package fr.dgac.ivy; + +/** + * this class is a dummy ApplicationListener + * + * @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> + * + * an ApplicatinListener class for handling application-level request on the + * Ivy bus. The methods in this class are empty. This class exists as a + * convenience for implementing a subset of the methods of the + * applicationlistener. See the AWT 1.1 framework for further information on + * this. + */ + public abstract class IvyApplicationAdapter implements IvyApplicationListener { public void connect( IvyClient client ) { } public void disconnect( IvyClient client ) { } |