org.tm4j.vtl.factory
Interface AbstractFactory


public interface AbstractFactory

The minimum interface implemented by factory objects.


Method Summary
 java.lang.Object create(java.lang.String name)
          Instantiates a new object whose class is identified by the parameter name.
 

Method Detail

create

public java.lang.Object create(java.lang.String name)
Instantiates a new object whose class is identified by the parameter name. Implementations may freely perform class replacement and default object initialisation as part of this function.

Parameters:
name - The name of the object class to be instantiated.