1 37 package net.sourceforge.cruisecontrol.taglib; 38 39 import javax.servlet.jsp.JspException ; 40 import javax.servlet.jsp.tagext.Tag ; 41 42 47 public class LinkTag extends CruiseControlTagSupport { 48 private String exclude = LOG_PARAMETER; 49 50 public int doStartTag() throws JspException { 51 getPageContext().setAttribute(getId(), createUrl(exclude)); 52 return Tag.SKIP_BODY; 53 } 54 55 public String getExclude() { 56 return exclude; 57 } 58 59 public void setExclude(String exclude) { 60 this.exclude = exclude; 61 } 62 } 63 | Popular Tags |