Class JspNavigation
- java.lang.Object
- 
- org.apache.turbine.services.jsp.util.JspNavigation
 
- 
 public class JspNavigation extends Object Returns output of a Navigation module. An instance of this is placed in the request by the JspLayout. This allows template authors to set the navigation template they'd like to place in their templates.
 Here's how it's used in a JSP template:
 <%useBean id="navigation" class="JspNavigation" scope="request" %> ... <%= navigation.setTemplate("admin_navigation.jsp") %>- Version:
- $Id$
- Author:
- John D. McNally, Dave Bryson, Henning P. Schmiedehausen
 
- 
- 
Constructor SummaryConstructors Constructor Description JspNavigation(RunData data)Constructor
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetTemplate(String template)builds the output of the navigation template
 
- 
- 
- 
Constructor Detail- 
JspNavigationpublic JspNavigation(RunData data) Constructor- Parameters:
- data- Turbine request data
 
 
- 
 - 
Method Detail- 
setTemplatepublic void setTemplate(String template) builds the output of the navigation template- Parameters:
- template- the name of the navigation template
 
 
- 
 
-