diff options
author | jestin | 2004-07-27 16:21:38 +0000 |
---|---|---|
committer | jestin | 2004-07-27 16:21:38 +0000 |
commit | fd9c3e8ea4c7093bff92ec2162ca0be338024fa2 (patch) | |
tree | e4f6ea91828a3780310f0381cebf17f20ab9d705 /src/IvyApplicationListener.java | |
parent | 9ab98e8b79688821f85649fa3a04137f83467b73 (diff) | |
download | ivy-java-fd9c3e8ea4c7093bff92ec2162ca0be338024fa2.zip ivy-java-fd9c3e8ea4c7093bff92ec2162ca0be338024fa2.tar.gz ivy-java-fd9c3e8ea4c7093bff92ec2162ca0be338024fa2.tar.bz2 ivy-java-fd9c3e8ea4c7093bff92ec2162ca0be338024fa2.tar.xz |
see upstream Changelog and each file's header for detail ...
Diffstat (limited to 'src/IvyApplicationListener.java')
-rwxr-xr-x | src/IvyApplicationListener.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/IvyApplicationListener.java b/src/IvyApplicationListener.java index 456a85f..2dac989 100755 --- a/src/IvyApplicationListener.java +++ b/src/IvyApplicationListener.java @@ -37,6 +37,11 @@ public interface IvyApplicationListener extends java.util.EventListener { * @param client the peer * @param id * @param msgarg the message itself + * + * there is no need to use a bus close() or stop() operation within a die() + * method, it will be called automatically. Furthermore, it is considered + * poor style to enforce the end of a program with System.exit(), you should + * consider terminating all threads ( AWT, etc ) */ public abstract void directMessage( IvyClient client, int id,String msgarg ); } |