1 16 package org.apache.taglibs.string; 17 18 import org.apache.commons.lang.StringUtils; 19 import javax.servlet.jsp.JspException ; 20 21 28 public class UpperCaseTag extends StringTagSupport { 29 30 public UpperCaseTag() { 31 super(); 32 } 33 34 35 public String changeString(String text) throws JspException { 36 return StringUtils.upperCase(text); 37 } 38 39 public void initAttributes() { 40 41 } 42 43 44 } 45 | Popular Tags |