public class ClassFactoryImpl extends java.lang.Object implements ClassFactory
ClassFactory
.Constructor and Description |
---|
ClassFactoryImpl() |
Modifier and Type | Method and Description |
---|---|
ClassFab |
newClass(java.lang.String name,
java.lang.Class superClass)
Creates a
ClassFab object for the given name; the new class is a subclass of the
indicated class. |
InterfaceFab |
newInterface(java.lang.String name)
Creates a new
InterfaceFab object with the given name. |
public ClassFactoryImpl()
public ClassFab newClass(java.lang.String name, java.lang.Class superClass)
ClassFactory
ClassFab
object for the given name; the new class is a subclass of the
indicated class. The new class is public and concrete.
Incompatible change from 1.0: The module parameter has been removed.
newClass
in interface ClassFactory
name
- the full qualified name of the class to createsuperClass
- the parent class, which is often java.lang.Objectpublic InterfaceFab newInterface(java.lang.String name)
ClassFactory
InterfaceFab
object with the given name.newInterface
in interface ClassFactory