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