| org.apache.turbine.modules.GenericLoader org.apache.turbine.modules.PageLoader
exec | public void exec(RunData data, String name) throws Exception(Code) | | Attempts to load and execute the external page.
Parameters: data - Turbine information. Parameters: name - Name of object that will execute the page. 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 Screen with the specified name, or null. exception: Exception - a generic exception. |
getInstance | public Page getInstance(String name) throws Exception(Code) | | Pulls out an instance of the page by name. Name is just the
single name of the page.
Parameters: name - Name of object instance. A Page with the specified name, or null. exception: Exception - a generic exception. |
getInstance | public static PageLoader getInstance()(Code) | | The method through which this class is accessed.
The single instance of this class. |
|
|