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