public static UIComponent addVerbatim(UIComponent parent, BodyContent body) throws Exception { String value = body.getString(); body.clear(); if (!isWhitespace(value)) return addVerbatim(parent, value); else return null; }
public int doAfterBody() throws JspException { BodyContent bc = getBodyContent(); pagebody = bc.getString(); return SKIP_BODY; }