com.webobjects.jspservlet
Class WOBindingTag
com.webobjects.jspservlet.WOBindingTag
- public class WOBindingTag
This is a sub-tag of WOComponentTag used to pass bindings.
WebObjects supports the use of WOComponents in JSP through
the use of a Tag Library. While WOComponentTag specifies
the WOComponent that is used in a JSP, this specifies the key-value
pair to be passed to the WOComponent as a binding. This tag has no body but
has the following attributes:
- key. The key of the binding. Required.
- value. The value of the binding. Can be any type of Object. Required.
- See Also:
WOComponent
,
WOComponentTag
Method Summary |
int |
doStartTag()
Standard method to start using the tag. |
void |
setKey(String key)
Sets the attribute key for this tag. |
void |
setValue(Object value)
Sets the attribute value for this tag. |
WOBindingTag
public WOBindingTag()
doStartTag
public int doStartTag()
throws javax.servlet.jsp.JspException
- Standard method to start using the tag. Calls its parent
WOComponentTag to set key-value binding.
- Returns:
- SKIP_BODY, as this tag has no body.
- See Also:
WOComponentTag
setKey
public void setKey(String key)
- Sets the attribute
key
for this tag. See the class description
for more details. This is called by the servlet container framework to pass in
the value given the JSP.
- Parameters:
key
- the key of the binding
setValue
public void setValue(Object value)
- Sets the attribute
value
for this tag. See the class description
for more details. This is called by the servlet container framework to pass in
the value given the JSP. Can be any kind of Object.
- Parameters:
value
- the value of the binding
Copyright © 2003 Apple Computer, Inc.