1 package jface.mockobjects;
2
3 public class Record
4 {
5 String method;
6 Object[] param;
7 Object retVal;
8
9 public Record(String method, Object[] param)
10 {
11 this(method, param, null);
12 }
13
14 public Record(String method, Object[] param, Object retVal)
15 {
16 this.method = method;
17 this.param = param;
18 this.retVal = retVal;
19 }
20
21 public String getMethod()
22 {
23 return method;
24 }
25
26 public Object[] getParam()
27 {
28 return param;
29 }
30
31 public Object getRetVal()
32 {
33 return retVal;
34 }
35 }
36
This page was automatically generated by Maven