/**
* Save the body contents of this tag as the constant that we will
* be returning.
*
* @exception JspException if a JSP exception has occurred
*/
public int doAfterBody() throws JspException {
if (bodyContent != null) {
this.constant = bodyContent.getString().trim();
}
if ("".equals(this.constant)) {
this.constant = null;
}
return SKIP_BODY;
}
MultiboxTag.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:lams
作者:
评论列表
文章目录