aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationAdapter.java
blob: 376ee9a6ae6cfa9181c189e5acc2de4ea13595bb (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
/**
 * 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
 */
package fr.dgac.ivy;
 
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 ) {}
}