Package cdc.args
Class AutoFactory<T>
- java.lang.Object
-
- cdc.args.AbstractFactory<T>
-
- cdc.args.AutoFactory<T>
-
- All Implemented Interfaces:
Factory<T>
public class AutoFactory<T> extends AbstractFactory<T>
-
-
Constructor Summary
Constructors Constructor Description AutoFactory(Class<T> objectClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Tcreate(Args args, FormalArgs fargs)Creates an object.-
Methods inherited from class cdc.args.AbstractFactory
create, getCreationFormalArgsList, getMeta, getObjectClass, toString
-
-
-
-
Method Detail
-
create
protected T create(Args args, FormalArgs fargs)
Description copied from class:AbstractFactoryCreates an object.This is the creation method that must be implemented.
- Specified by:
createin classAbstractFactory<T>- Parameters:
args- The effective arguments.fargs- The formal arguments that match the effective ones.- Returns:
- The create object.
-
-