01: /* RunTest.java */
02:
03: package org.quilt.cl;
04:
05: /**
06: * Interface implemented by all classes synthesized by ClassFactory.
07: *
08: * @see ClassFactory
09: */
10:
11: public interface RunTest {
12: /**
13: * Standard test method.
14: *
15: * @param x See ClassFactory documentation for appropriate values.
16: * */
17: public int runTest(int x);
18: }
|