org.apache.taglibs.xsl
Class IncludeTag

java.lang.Object
  |
  +--javax.servlet.jsp.tagext.TagSupport
        |
        +--org.apache.taglibs.xsl.IncludeTag
All Implemented Interfaces:
java.io.Serializable, javax.servlet.jsp.tagext.Tag

public class IncludeTag
extends javax.servlet.jsp.tagext.TagSupport

Include the contents of the specified page at this point in our output. This tag is similar to <jsp:include>, but does not cause the output to be sent directly to the servlet response. Therefore, it can be used to capture the content of the page as body content of a surrounding tag in which we are nested.

Version:
$Revision: 1.1 $ $Date: 2000/07/03 19:30:03 $
Author:
Craig R. McClanahan
See Also:
Serialized Form

Fields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContext
 
Fields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE
 
Constructor Summary
IncludeTag()
           
 
Method Summary
 int doStartTag()
          Include the specified page or servlet's output at this point.
 java.lang.String getPage()
           
 void setPage(java.lang.String page)
           
 
Methods inherited from class javax.servlet.jsp.tagext.TagSupport
doEndTag, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setId, setPageContext, setParent, setValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IncludeTag

public IncludeTag()
Method Detail

getPage

public java.lang.String getPage()

setPage

public void setPage(java.lang.String page)

doStartTag

public int doStartTag()
               throws javax.servlet.jsp.JspException
Include the specified page or servlet's output at this point.
Overrides:
doStartTag in class javax.servlet.jsp.tagext.TagSupport
Throws:
javax.servlet.jsp.JspException - if a JSP error occurs


Copyright ? 2000 Apache Software Foundation. All Rights Reserved.