| org.apache.turbine.modules.GenericLoader org.apache.turbine.modules.LayoutLoader
exec | public void exec(RunData data, String name) throws Exception(Code) | | Attempts to load and execute the external layout.
Parameters: data - Turbine information. Parameters: name - Name of object that will execute the layout. exception: Exception - a generic exception. |
getAssembler | public Assembler getAssembler(String name) throws Exception(Code) | | Pulls out an instance of the object by name. Name is just the
single name of the object. This is equal to getInstance but
returns an Assembler object and is needed to fulfil the Loader
interface.
Parameters: name - Name of object instance. A Layout with the specified name, or null. exception: Exception - a generic exception. |
getInstance | public Layout getInstance(String name) throws Exception(Code) | | Pulls out an instance of the Layout by name. Name is just the
single name of the Layout.
Parameters: name - Name of requested Layout A Layout with the specified name, or null. exception: Exception - a generic exception. |
getInstance | public static LayoutLoader getInstance()(Code) | | The method through which this class is accessed.
The single instance of this class. |
|
|