Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.webapp.admin
Class RowTag  view RowTag download RowTag.java

java.lang.Object
  extended byjavax.servlet.jsp.tagext.TagSupport
      extended byjavax.servlet.jsp.tagext.BodyTagSupport
          extended byorg.apache.webapp.admin.RowTag
All Implemented Interfaces:
javax.servlet.jsp.tagext.BodyTag, javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.tagext.JspTag, java.io.Serializable, javax.servlet.jsp.tagext.Tag

public class RowTag
extends javax.servlet.jsp.tagext.BodyTagSupport

Nested tag that represents an individual "instant table". This tag is valid only when nested within an TableTag tag. This tag has the following user-settable attributes:

Version:
$Revision: 302726 $ $Date: 2004-02-27 09:59:07 -0500 (Fri, 27 Feb 2004) $

Field Summary
protected  java.lang.String data
          The data of the table data element of this row.
protected  java.lang.String dataStyle
          The style of the data.
protected  boolean header
          Is this the header row?
protected  java.lang.String label
          The label that will be rendered for this row's table data element.
protected  java.lang.String labelStyle
          The style of the label.
protected  java.lang.String styleId
          The styleId for the label.
 
Fields inherited from class javax.servlet.jsp.tagext.BodyTagSupport
bodyContent
 
Fields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContext
 
Fields inherited from interface javax.servlet.jsp.tagext.BodyTag
EVAL_BODY_BUFFERED, EVAL_BODY_TAG
 
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
RowTag()
           
 
Method Summary
 int doAfterBody()
          Process the body text of this tag (if any).
 int doEndTag()
          Record this action with our surrounding ActionsTag instance.
 int doStartTag()
          Process the start of this tag.
 java.lang.String getdataStyle()
           
 boolean getHeader()
           
 java.lang.String getLabelStyle()
           
 java.lang.String getStyleId()
           
 void release()
          Release all state information set by this tag.
 void setData(java.lang.String data)
           
 void setdataStyle(java.lang.String dataStyle)
           
 void setHeader(boolean header)
           
 void setLabel(java.lang.String label)
           
 void setLabelStyle(java.lang.String labelStyle)
           
 void setStyleId(java.lang.String styleId)
           
 
Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
doInitBody, getBodyContent, getPreviousOut, setBodyContent
 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
findAncestorWithClass, getId, getParent, getValue, getValues, removeValue, setId, setPageContext, setParent, setValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.servlet.jsp.tagext.Tag
getParent, setPageContext, setParent
 

Field Detail

header

protected boolean header
Is this the header row?


label

protected java.lang.String label
The label that will be rendered for this row's table data element.


data

protected java.lang.String data
The data of the table data element of this row.


labelStyle

protected java.lang.String labelStyle
The style of the label.


dataStyle

protected java.lang.String dataStyle
The style of the data.


styleId

protected java.lang.String styleId
The styleId for the label.

Constructor Detail

RowTag

public RowTag()
Method Detail

getHeader

public boolean getHeader()

setHeader

public void setHeader(boolean header)

setLabel

public void setLabel(java.lang.String label)

setData

public void setData(java.lang.String data)

getLabelStyle

public java.lang.String getLabelStyle()

setLabelStyle

public void setLabelStyle(java.lang.String labelStyle)

getdataStyle

public java.lang.String getdataStyle()

setdataStyle

public void setdataStyle(java.lang.String dataStyle)

getStyleId

public java.lang.String getStyleId()

setStyleId

public void setStyleId(java.lang.String styleId)

doStartTag

public int doStartTag()
               throws javax.servlet.jsp.JspException
Process the start of this tag.


doAfterBody

public int doAfterBody()
                throws javax.servlet.jsp.JspException
Process the body text of this tag (if any).


doEndTag

public int doEndTag()
             throws javax.servlet.jsp.JspException
Record this action with our surrounding ActionsTag instance.


release

public void release()
Release all state information set by this tag.