Creates a {@link ClassFab} object for the given name; the new class is a subclass of theindicated class. The new class is public and concrete.
Incompatible change from 1.0: The module parameter has been removed.
@param name the full qualified name of the class to create
@param superClass the parent class, which is often java.lang.Object
Simplified version of {@link #newClass(String,Class)} that generates a name based on theservice interface name, extends from java.lang.Object, and automatically adds the serviceInterface to the returned ClassFab. This is the most common use when creating the kinds of proxies used throughout Tapestry IoC.
@param serviceInterface
Simplified version of {@link #newClass(String,Class)} that generates a name based on the service interface name,extends from java.lang.Object, and automatically adds the serviceInterface to the returned ClassFab. This is the most common use when creating the kinds of proxies used throughout Tapestry IoC.
@param serviceInterface
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.