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

Quick Search    Search Deep

com.aendvari.tethys.tag.html
Class CheckboxTag  view CheckboxTag download CheckboxTag.java

java.lang.Object
  extended byjavax.servlet.jsp.tagext.TagSupport
      extended byjavax.servlet.jsp.tagext.BodyTagSupport
          extended bycom.aendvari.tethys.tag.data.DataBodyTag
              extended bycom.aendvari.tethys.tag.context.ContextBodyTag
                  extended bycom.aendvari.tethys.tag.model.ModelTreeBodyTag
                      extended bycom.aendvari.tethys.tag.html.AbstractTag
                          extended bycom.aendvari.tethys.tag.html.CheckboxTag
All Implemented Interfaces:
javax.servlet.jsp.tagext.BodyTag, com.aendvari.tethys.tag.context.ContextAncestorTag, com.aendvari.tethys.tag.data.DataAncestorTag, javax.servlet.jsp.tagext.IterationTag, javax.servlet.jsp.tagext.JspTag, com.aendvari.tethys.tag.model.ModelTreeAncestorTag, java.io.Serializable, javax.servlet.jsp.tagext.Tag

public class CheckboxTag
extends AbstractTag

The HTML checkbox tag.


Field Summary
private  java.lang.String checked
          The checked attribute..
private  java.lang.String name
          The name of this field.
private  java.lang.String useHiddenField
          Does the user want to use the "hidden field" feature.
 
Fields inherited from class com.aendvari.tethys.tag.html.AbstractTag
 
Fields inherited from class com.aendvari.tethys.tag.model.ModelTreeBodyTag
modelContext, modelContextMethod, path
 
Fields inherited from class com.aendvari.tethys.tag.context.ContextBodyTag
context
 
Fields inherited from class com.aendvari.tethys.tag.data.DataBodyTag
dataScope
 
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
CheckboxTag()
           
 
Method Summary
 int doEndTag()
          Default processing of the end tag returning EVAL_PAGE.
 int doStartTag()
          Default processing of the start tag returning EVAL_BODY_BUFFERED.
 java.lang.String getChecked()
           
 java.lang.String getId()
          The value of the id attribute of this tag; or null.
 java.lang.String getName()
           
 java.lang.String getUseHiddenField()
           
 void release()
          Releases the tag resources.
 void setChecked(java.lang.String param)
           
 void setId(java.lang.String param)
          Set the id attribute for this tag.
 void setName(java.lang.String param)
           
 void setUseHiddenField(java.lang.String param)
           
 boolean useHiddenFieldFeature()
           
 
Methods inherited from class com.aendvari.tethys.tag.html.AbstractTag
extractModelValue, generateScriptAttribtues, generateStyleAttribute, getAccesskey, getOnblur, getOnchange, getOnclick, getOndblclick, getOnfocus, getOnkeydown, getOnkeypress, getOnkeyup, getOnmousedown, getOnmousemove, getOnmouseout, getOnmouseover, getOnmouseup, getOnselect, getStyle, getStyleClass, getTabindex, setAccesskey, setOnblur, setOnchange, setOnclick, setOndblclick, setOnfocus, setOnkeydown, setOnkeypress, setOnkeyup, setOnmousedown, setOnmousemove, setOnmouseout, setOnmouseover, setOnmouseup, setOnselect, setStyle, setStyleClass, setTabindex
 
Methods inherited from class com.aendvari.tethys.tag.model.ModelTreeBodyTag
establishModelContext, getModelContext, getModelNode, getParentModelContext, getPath, setPath
 
Methods inherited from class com.aendvari.tethys.tag.context.ContextBodyTag
determineContext, getContext, getParentContext, setContext
 
Methods inherited from class com.aendvari.tethys.tag.data.DataBodyTag
getDataScope, setDataScope
 
Methods inherited from class javax.servlet.jsp.tagext.BodyTagSupport
doAfterBody, doInitBody, getBodyContent, getPreviousOut, setBodyContent
 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
findAncestorWithClass, getParent, getValue, getValues, removeValue, 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

name

private java.lang.String name
The name of this field.


checked

private java.lang.String checked
The checked attribute..


useHiddenField

private java.lang.String useHiddenField
Does the user want to use the "hidden field" feature.

Constructor Detail

CheckboxTag

public CheckboxTag()
Method Detail

getName

public java.lang.String getName()

setName

public void setName(java.lang.String param)

getId

public java.lang.String getId()
Description copied from class: javax.servlet.jsp.tagext.TagSupport
The value of the id attribute of this tag; or null.


setId

public void setId(java.lang.String param)
Description copied from class: javax.servlet.jsp.tagext.TagSupport
Set the id attribute for this tag.


getChecked

public java.lang.String getChecked()

setChecked

public void setChecked(java.lang.String param)

getUseHiddenField

public java.lang.String getUseHiddenField()

setUseHiddenField

public void setUseHiddenField(java.lang.String param)

useHiddenFieldFeature

public boolean useHiddenFieldFeature()

doStartTag

public int doStartTag()
               throws javax.servlet.jsp.JspException
Description copied from class: javax.servlet.jsp.tagext.BodyTagSupport
Default processing of the start tag returning EVAL_BODY_BUFFERED.


doEndTag

public int doEndTag()
             throws javax.servlet.jsp.JspException
Description copied from class: javax.servlet.jsp.tagext.BodyTagSupport
Default processing of the end tag returning EVAL_PAGE.


release

public void release()
Description copied from class: AbstractTag
Releases the tag resources.

Specified by:
release in interface javax.servlet.jsp.tagext.Tag
Overrides:
release in class AbstractTag