1 /* RunTest.java */2 3 package org.quilt.cl;4 5 /** 6 * Interface implemented by all classes synthesized by ClassFactory.7 *8 * @see ClassFactory9 */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 }19