2.17.2: 2011-06-17

net.sf.basedb.clients.web.taglib.path
Class Path

java.lang.Object
  extended by javax.servlet.jsp.tagext.TagSupport
      extended by net.sf.basedb.clients.web.taglib.path.Path
All Implemented Interfaces:
Serializable, IterationTag, JspTag, Tag

public class Path
extends TagSupport

This tag defines a navigation path. Usually it is displayed at the top of a page.

Syntax:

   <p:path
      id=...
      clazz=...
      style=...
   >
      <p:pathelement ... />
   </p:path>

Attribute Default value Required Description
id - yes The ID of the path. The value of this attribute goes directly into the standard HTML id attribute. This means that if you need a reference to the menu object in your own JavaScript code, you may for example use the following code:

menu = document.getElementById('<id>');

clazz path no The value if this attribute goes directly into the standard HTML class attribute. This allows you to apply different styles to different menus. If you set the type attribute to horizontal you should also change this attribute to menu_horizontal.
style - no The value if this attribute goes directly into the standard HTML style attribute. This allows you to apply different styles to different menus. Note! If you want the menu to be hidden to begin with you can use: style="display: none;".

Version:
2.0
Author:
Nicklas
See Also:
Serialized Form
Last modified
$Date: 2009-04-06 14:52:39 +0200 (Mon, 06 Apr 2009) $

Field Summary
private  String clazz
          Optional class attribute
private  int numElements
          Keeps track of the number of path elements so separators can be added.
private static String ROOT
          The path to the root directory of this webserver.
private  String separator
           
private static long serialVersionUID
           
private  String style
          Optional style attribute
 
Fields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContext
 
Fields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAIN
 
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
 
Constructor Summary
Path()
           
 
Method Summary
 int doEndTag()
           
 int doStartTag()
           
 String getClazz()
           
(package private)  String getRoot()
           
(package private)  String getSeparator()
           
 String getStyle()
           
 void setClazz(String clazz)
           
 void setStyle(String style)
           
 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

ROOT

private static String ROOT
The path to the root directory of this webserver.


clazz

private String clazz
Optional class attribute


style

private String style
Optional style attribute


numElements

private int numElements
Keeps track of the number of path elements so separators can be added.


separator

private String separator
Constructor Detail

Path

public Path()
Method Detail

setClazz

public void setClazz(String clazz)

getClazz

public String getClazz()

setStyle

public void setStyle(String style)

getStyle

public String getStyle()

getRoot

String getRoot()

getSeparator

String getSeparator()

doStartTag

public int doStartTag()
               throws JspException
Specified by:
doStartTag in interface Tag
Overrides:
doStartTag in class TagSupport
Throws:
JspException

doEndTag

public int doEndTag()
             throws JspException
Specified by:
doEndTag in interface Tag
Overrides:
doEndTag in class TagSupport
Throws:
JspException

2.17.2: 2011-06-17