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