01: package measurements.suites;
02:
03: /**
04: * JoinPoint measurements
05: *
06: * @version $Revision: 1.1 $
07: * @author Angela Nicoara
08: */
09: public class JoinPointTestClass implements JoinPointTestInterface {
10: // INVOKEINTERFACE
11: public void interfaceMethodShort() {
12: };
13:
14: public void interfaceMethodLongO(Object ob1, Object ob2) {
15: };
16:
17: public void interfaceMethodLongI(int ob1, int ob2) {
18: };
19:
20: public void interfaceMethodLongL(long ob1, long ob2) {
21: };
22:
23: public void interfaceMethodLongD(double ob1, double ob2) {
24: };
25:
26: // SYNC INVOKEVIRTUAL
27: public synchronized void syncMethodShort() {
28: };
29:
30: public synchronized void syncMethodLongO(Object ob1, Object ob2) {
31: };
32:
33: public synchronized void syncMethodLongI(int ob1, int ob2) {
34: };
35:
36: public synchronized void syncMethodLongL(long ob1, long ob2) {
37: };
38:
39: public synchronized void syncMethodLongD(double ob1, double ob2) {
40: };
41:
42: // INVOKESTATIC
43: public static void staticMethodShort() {
44: };
45:
46: public static void staticMethodLongO(Object ob1, Object ob2) {
47: };
48:
49: public static void staticMethodLongI(int ob1, int ob2) {
50: };
51:
52: public static void staticMethodLongL(long ob1, long ob2) {
53: };
54:
55: public static void staticMethodLongD(double ob1, double ob2) {
56: };
57: }
|