01: // $Id: TestInterface.java,v 1.1.1.1 2003/07/02 15:30:46 apopovic Exp $
02: // =====================================================================
03: //
04: // (history at end)
05: //
06:
07: package measurements.suites;
08:
09: public interface TestInterface {
10: public void interfaceMethodShort();
11:
12: public void interfaceMethodLong(Object x, Object o);
13:
14: }
15:
16: //======================================================================
17: //
18: // $Log: TestInterface.java,v $
19: // Revision 1.1.1.1 2003/07/02 15:30:46 apopovic
20: // Imported from ETH Zurich
21: //
22: // Revision 1.3 2002/03/14 08:46:23 popovici
23: // Minor adaptations and corrections
24: //
25: // Revision 1.2 2002/03/12 10:17:20 popovici
26: // Long methods now (Object,Object); syntax corrections
27: //
28: // Revision 1.1 2002/03/12 09:50:16 popovici
29: // Initial version of the Benchmark measurements
30: //
|