KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > measurements > suites > JoinPointTestInterface


1 package measurements.suites;
2
3 /**
4  * JoinPoint measurements
5  *
6  * @version $Revision: 1.1 $
7  * @author Angela Nicoara
8  */

9 public interface JoinPointTestInterface
10 {
11     public void interfaceMethodShort();
12     public void interfaceMethodLongO(Object JavaDoc ob1, Object JavaDoc ob2);
13     public void interfaceMethodLongI(int ob1, int ob2);
14     public void interfaceMethodLongL(long ob1, long ob2);
15     public void interfaceMethodLongD(double ob1, double ob2);
16 }
Popular Tags