blob: a07020f6d50fa0bd588f1d693df3670bc8d83b04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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.
*
* changelog:
* 1.0.12: fixed a missing id in the parameters
*/
public abstract class IvyApplicationAdapter implements IvyApplicationListener {
public void connect( IvyClient client ) { }
public void disconnect( IvyClient client ) { }
public void die( IvyClient client, int id ) { }
public void directMessage( IvyClient client, int id,String msgarg ) {}
}
|