1 16 package org.apache.taglibs.string; 17 18 import javax.servlet.jsp.JspException ; 19 import org.apache.commons.lang.CharSetUtils; 20 21 37 public class SqueezeTag extends StringTagSupport { 38 39 private String set; 40 41 public SqueezeTag() { 42 super(); 43 } 44 45 50 public String getSet() { 51 return this.set; 52 } 53 54 59 public void setSet(String set) { 60 this.set = set; 61 } 62 63 64 65 public String changeString(String text) throws JspException { 66 return CharSetUtils.squeeze(text, set); 67 } 68 69 public void initAttributes() { 70 71 this.set = null; 72 73 } 74 75 } 76 | Popular Tags |