KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > lucane > common > net > ObjectListener


1 package org.lucane.common.net;
2
3 /**
4  * The ObjectListener interface
5  */

6 public interface ObjectListener
7 {
8   /**
9    * Called when an object is read
10    *
11    * @param o the object read from the ObjectConnection
12    */

13   public void objectRead(Object JavaDoc o);
14 }
15
Popular Tags