/**
* Render the end of this form.
*
* @exception JspException if a JSP exception has occurred
*/
public int doEndTag() throws JspException {
// Remove the page scope attributes we created
pageContext.removeAttribute(Constants.SELECT_KEY);
// Render a tag representing the end of our current form
StringBuffer results = new StringBuffer();
if (saveBody != null) {
results.append(saveBody);
saveBody = null;
}
results.append("</select>");
TagUtils.getInstance().write(pageContext, results.toString());
return (EVAL_PAGE);
}
SelectTag.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:lams
作者:
评论列表
文章目录