KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > callAndExecution > Intf


1 package test.callAndExecution;
2
3 /**
4  * @author <a HREF="mailto:alex@gnilux.com">Alexandre Vasseur</a>
5  */

6 public interface Intf {
7
8     public void called();
9
10     public void called(int i);
11 }
12
Popular Tags