com.ecyrd.jspwiki.tags
Class IncludeResourcesTag
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
com.ecyrd.jspwiki.tags.WikiTagBase
com.ecyrd.jspwiki.tags.IncludeResourcesTag
- All Implemented Interfaces:
- Serializable, IterationTag, JspTag, Tag, TryCatchFinally
public class IncludeResourcesTag
- extends WikiTagBase
This tag is used to include any programmatic includes into the
output stream. Actually, what it does is that it simply emits a
tiny marker into the stream, and then a ServletFilter will take
care of the actual inclusion.
- See Also:
- Serialized Form
Method Summary |
int |
doWikiStartTag()
This method is allowed to do pretty much whatever he wants. |
void |
initTag()
This method is called when the tag is encountered within a new request,
but before the setXXX() methods are called. |
void |
setType(String type)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IncludeResourcesTag
public IncludeResourcesTag()
initTag
public void initTag()
- Description copied from class:
WikiTagBase
- This method is called when the tag is encountered within a new request,
but before the setXXX() methods are called.
The default implementation does nothing.
- Overrides:
initTag
in class WikiTagBase
setType
public void setType(String type)
doWikiStartTag
public int doWikiStartTag()
throws Exception
- Description copied from class:
WikiTagBase
- This method is allowed to do pretty much whatever he wants.
We then catch all mistakes.
- Specified by:
doWikiStartTag
in class WikiTagBase
- Throws:
Exception