Exemplo n.º 1
0
 public int doStartTag() throws JspTagException {
   Page page = (Page) pageContext.getAttribute("page");
   try {
     pageContext.getOut().print(encode((String) page.getAttribute(propertyName), page));
   } catch (Exception e) {
     throw new JspTagException("unexpected IO problems");
   }
   return SKIP_BODY;
 }