|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.servlet.jsp.tagext.TagSupport
javax.servlet.jsp.tagext.BodyTagSupport
org.ujac.web.tag.BaseTag
org.ujac.web.tag.RowCellTag
public class RowCellTag
Name: RowCellTag
Description: A custom tag, specifying special styles for columns withing rows.
| Field Summary | |
|---|---|
protected boolean |
fillRow
Tells whether to fill the current row or not. |
protected int |
index
The column index. |
| Fields inherited from class org.ujac.web.tag.BaseTag |
|---|
log |
| 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 | |
|---|---|
RowCellTag()
|
|
| Method Summary | |
|---|---|
int |
doEndTag()
|
int |
doStartTag()
|
int |
getColspan()
Getter method for the the property colspan. |
int |
getColumnIndex()
Getter method for the the property index. |
String |
getColumnName()
Getter method for the the property name. |
String |
getContent()
Gets the tag's content. |
String |
getEvenStyle()
Getter method for the the property evenStyle. |
String |
getHalign()
Getter method for the the property halign. |
String |
getHeight()
Getter method for the the property height. |
String |
getOddStyle()
Getter method for the the property oddStyle. |
float |
getPaddingBottom()
Getter method for the the property paddingBottom. |
float |
getPaddingLeft()
Getter method for the the property paddingLeft. |
float |
getPaddingRight()
Getter method for the the property paddingRight. |
float |
getPaddingTop()
Getter method for the the property paddingTop. |
String |
getStyle()
Getter method for the the property style. |
String |
getValign()
Getter method for the the property valign. |
String |
getWidth()
Getter method for the the property width. |
boolean |
hasContent()
Gets the tag's content. |
boolean |
isFillRow()
Getter method for the the property fillRow. |
protected RowCellContainer |
lookupRowCellContainer()
Gets the latest PrintRowTag from the tag stack. |
void |
release()
|
void |
setColspan(int colspan)
Setter method for the the property colspan. |
void |
setEvenStyle(String evenStyle)
Setter method for the the property evenStyle. |
void |
setFillRow(boolean fillRow)
Setter method for the the property fillRow. |
void |
setHalign(String halign)
Setter method for the the property halign. |
void |
setHeight(String height)
Setter method for the the property height. |
void |
setIndex(int index)
Setter method for the the property index. |
void |
setName(String name)
Setter method for the the property name. |
void |
setOddStyle(String oddStyle)
Setter method for the the property oddStyle. |
void |
setPaddingBottom(float paddingBottom)
Setter method for the the property paddingBottom. |
void |
setPaddingLeft(float paddingLeft)
Setter method for the the property paddingLeft. |
void |
setPaddingRight(float paddingRight)
Setter method for the the property paddingRight. |
void |
setPaddingTop(float paddingTop)
Setter method for the the property paddingTop. |
void |
setStyle(String style)
Setter method for the the property style. |
void |
setValign(String valign)
Setter method for the the property valign. |
void |
setWidth(String width)
Setter method for the the property width. |
| Methods inherited from class org.ujac.web.tag.BaseTag |
|---|
clearTagAttributes, getParent, getTagAttribute, getTagAttributes, getTemplateContext, removeTagAttribute, setAttribute, setTagAttribute, writeAttributes |
| Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport |
|---|
doAfterBody, 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 |
|---|
protected int index
protected boolean fillRow
| Constructor Detail |
|---|
public RowCellTag()
| Method Detail |
|---|
public String getColumnName()
public void setName(String name)
name - The value to set for the property name.public int getColumnIndex()
public void setIndex(int index)
index - The value to set for the property index.public int getColspan()
public void setColspan(int colspan)
colspan - The value to set for the property colspan.public boolean isFillRow()
public void setFillRow(boolean fillRow)
fillRow - The value to set for the property fillRow.public String getStyle()
public void setStyle(String style)
style - The value to set for the property style.public String getEvenStyle()
public void setEvenStyle(String evenStyle)
evenStyle - The value to set for the property evenStyle.public String getOddStyle()
public void setOddStyle(String oddStyle)
oddStyle - The value to set for the property oddStyle.public String getWidth()
public void setWidth(String width)
width - The value to set for the property width.public String getHeight()
public void setHeight(String height)
height - The value to set for the property height.public float getPaddingLeft()
public void setPaddingLeft(float paddingLeft)
paddingLeft - The value to set for the property paddingLeft.public float getPaddingRight()
public void setPaddingRight(float paddingRight)
paddingRight - The value to set for the property paddingRight.public float getPaddingTop()
public void setPaddingTop(float paddingTop)
paddingTop - The value to set for the property paddingTop.public float getPaddingBottom()
public void setPaddingBottom(float paddingBottom)
paddingBottom - The value to set for the property paddingBottom.public String getHalign()
public void setHalign(String halign)
halign - The value to set for the property halign.public String getValign()
public void setValign(String valign)
valign - The value to set for the property valign.public boolean hasContent()
public String getContent()
public int doStartTag()
throws JspException
doStartTag in interface TagdoStartTag in class BaseTagJspExceptionBodyTagSupport.doStartTag()
public int doEndTag()
throws JspException
doEndTag in interface TagdoEndTag in class BodyTagSupportJspExceptionBodyTagSupport.doEndTag()public void release()
release in interface Tagrelease in class BaseTagBodyTagSupport.release()protected RowCellContainer lookupRowCellContainer()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||