| org.apache.turbine.modules.GenericLoader org.apache.turbine.modules.NavigationLoader
eval | public ConcreteElement eval(RunData data, String name) throws Exception(Code) | | Attempts to load and execute the external Navigation. This is
used when you want to execute a Navigation which returns its
output via a MultiPartElement instead of out the data.getPage()
value. This allows you to easily chain the execution of
Navigation modules together.
Parameters: data - Turbine information. Parameters: name - Name of object that will execute the navigation. exception: Exception - a generic exception. |
exec | public void exec(RunData data, String name) throws Exception(Code) | | Attempts to load and execute the external Navigation.
Parameters: data - Turbine information. Parameters: name - Name of object instance. 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 Navigation getInstance(String name) throws Exception(Code) | | Pulls out an instance of the Navigation by name. Name is just the
single name of the Navigation.
Parameters: name - Name of requested Navigation A Navigation with the specified name, or null. exception: Exception - a generic exception. |
getInstance | public static NavigationLoader getInstance()(Code) | | The method through which this class is accessed.
The single instance of this class. |
|
|