aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationAdapter.java
blob: af198dd2f80d63cbb05b81cf5df9eb738fc38f1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ) { }
  public void die( IvyClient client ) { }
  public void directMessage( IvyClient client, int id,String msgarg ) {}
}