01: package imp;
02:
03: import experiment.TestClass;
04:
05: /**
06: * Tests if we find stuff in allocation expressions
07: *
08: *@author Chris Seguin
09: *@created September 7, 1999
10: */
11: public class Factory {
12: /**
13: * Description of the Method
14: *
15: *@return Description of the Returned Value
16: */
17: public Object createNew() {
18: return new TestClass();
19: }
20: }
|