aboutsummaryrefslogtreecommitdiff
path: root/src/IvyApplicationAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/IvyApplicationAdapter.java')
-rwxr-xr-xsrc/IvyApplicationAdapter.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/IvyApplicationAdapter.java b/src/IvyApplicationAdapter.java
new file mode 100755
index 0000000..16491b5
--- /dev/null
+++ b/src/IvyApplicationAdapter.java
@@ -0,0 +1,17 @@
+/*
+**
+** 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;
+
+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 ) {}
+}