1 16 17 package org.apache.taglibs.standard.tag.rt.core; 18 19 import javax.servlet.jsp.JspTagException ; 20 21 import org.apache.taglibs.standard.tag.common.core.ImportSupport; 22 23 29 30 public class ImportTag extends ImportSupport { 31 32 35 public void setUrl(String url) throws JspTagException { 37 this.url = url; 38 } 39 40 public void setContext(String context) throws JspTagException { 42 this.context = context; 43 } 44 45 public void setCharEncoding(String charEncoding) throws JspTagException { 47 this.charEncoding = charEncoding; 48 } 49 50 } 51 | Popular Tags |