|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
org.apache.struts.taglib.html.BaseHandlerTag | +--org.apache.struts.taglib.html.SelectTag
Custom tag that represents an HTML select element, associated with a bean property specified by our attributes. This tag must be nested inside a form tag.
Field Summary | |
protected java.lang.String[] |
match
The actual values we will match against, calculated in doStartTag(). |
protected static MessageResources |
messages
The message resources for this package. |
protected java.lang.String |
multiple
Should multiple selections be allowed? |
protected java.lang.String |
name
The name of the bean containing our underlying property. |
protected java.lang.String |
property
The property name we are associated with. |
protected java.lang.String |
saveBody
The saved body content of this tag. |
protected java.lang.String |
size
How many available options should be displayed when this element is rendered? |
protected java.lang.String |
value
The value to compare with for marking an option selected. |
Fields inherited from class org.apache.struts.taglib.html.BaseHandlerTag |
accesskey, disabled, onblur, onchange, onclick, ondblclick, onfocus, onkeydown, onkeypress, onkeyup, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup, onselect, readonly, style, styleClass, styleId, tabindex, title |
Constructor Summary | |
SelectTag()
|
Method Summary | |
int |
doAfterBody()
Save any body content of this tag, which will generally be the option(s) representing the values displayed to the user. |
int |
doEndTag()
Render the end of this form. |
int |
doStartTag()
Render the beginning of this form. |
java.lang.String |
getMultiple()
|
java.lang.String |
getName()
|
java.lang.String |
getProperty()
Return the property name. |
java.lang.String |
getSize()
|
java.lang.String |
getValue()
Return the comparison value. |
boolean |
isMatched(java.lang.String value)
Does the specified value match one of those we are looking for? |
void |
release()
Release any acquired resources. |
void |
setMultiple(java.lang.String multiple)
|
void |
setName(java.lang.String name)
|
void |
setProperty(java.lang.String property)
Set the property name. |
void |
setSize(java.lang.String size)
|
void |
setValue(java.lang.String value)
Set the comparison value. |
Methods inherited from class org.apache.struts.taglib.html.BaseHandlerTag |
getAccesskey, getDisabled, getOnblur, getOnchange, getOnclick, getOndblclick, getOnfocus, getOnkeydown, getOnkeypress, getOnkeyup, getOnmousedown, getOnmousemove, getOnmouseout, getOnmouseover, getOnmouseup, getOnselect, getReadonly, getStyle, getStyleClass, getStyleId, getTabindex, getTitle, prepareEventHandlers, prepareFocusEvents, prepareKeyEvents, prepareMouseEvents, prepareStyles, prepareTextEvents, setAccesskey, setDisabled, setOnblur, setOnchange, setOnclick, setOndblclick, setOnfocus, setOnkeydown, setOnkeypress, setOnkeyup, setOnmousedown, setOnmousemove, setOnmouseout, setOnmouseover, setOnmouseup, setOnselect, setReadonly, setStyle, setStyleClass, setStyleId, setTabindex, setTitle |
Field Detail |
protected java.lang.String[] match
protected static MessageResources messages
protected java.lang.String multiple
protected java.lang.String name
protected java.lang.String property
protected java.lang.String saveBody
protected java.lang.String size
protected java.lang.String value
Constructor Detail |
public SelectTag()
Method Detail |
public java.lang.String getMultiple()
public void setMultiple(java.lang.String multiple)
public java.lang.String getName()
public void setName(java.lang.String name)
public java.lang.String getSize()
public void setSize(java.lang.String size)
public boolean isMatched(java.lang.String value)
value
- Value to be comparedpublic java.lang.String getProperty()
public void setProperty(java.lang.String property)
property
- The new property namepublic java.lang.String getValue()
public void setValue(java.lang.String value)
value
- The new comparison valuepublic int doStartTag() throws javax.servlet.jsp.JspException
JspException
- if a JSP exception has occurredpublic int doAfterBody() throws javax.servlet.jsp.JspException
JspException
- if a JSP exception has occurredpublic int doEndTag() throws javax.servlet.jsp.JspException
JspException
- if a JSP exception has occurredpublic void release()
release
in class BaseHandlerTag
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |