Package org.apache.wiki.tags
Class DiffLinkTag
- java.lang.Object
-
- javax.servlet.jsp.tagext.TagSupport
-
- org.apache.wiki.tags.WikiTagBase
-
- org.apache.wiki.tags.WikiLinkTag
-
- org.apache.wiki.tags.DiffLinkTag
-
- All Implemented Interfaces:
java.io.Serializable,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag,javax.servlet.jsp.tagext.TryCatchFinally
public class DiffLinkTag extends WikiLinkTag
Writes a diff link. Body of the link becomes the link text.Attributes
- page - Page name to refer to. Default is the current page.
- version - The older of these versions. May be an integer to signify a version number, or the text "latest" to signify the latest version. If not specified, will default to "latest". May also be "previous" to signify a version prior to this particular version.
- newVersion - The newer of these versions. Can also be "latest", or "previous". Defaults to "latest".
- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringVER_CURRENTstatic java.lang.StringVER_LATESTstatic java.lang.StringVER_PREVIOUS-
Fields inherited from class org.apache.wiki.tags.WikiLinkTag
ANCHOR, m_format, m_pageName, m_template, URL
-
Fields inherited from class org.apache.wiki.tags.WikiTagBase
m_wikiContext
-
-
Constructor Summary
Constructors Constructor Description DiffLinkTag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdoWikiStartTag()This method is allowed to do pretty much whatever he wants.java.lang.StringgetNewVersion()java.lang.StringgetVersion()voidinitTag()This method is called when the tag is encountered within a new request, but before the setXXX() methods are called.voidsetNewVersion(java.lang.String arg)voidsetVersion(java.lang.String arg)-
Methods inherited from class org.apache.wiki.tags.WikiLinkTag
doEndTag, getPage, getTemplate, setFormat, setPage, setTemplate
-
Methods inherited from class org.apache.wiki.tags.WikiTagBase
doCatch, doFinally, doStartTag, setId, setPageContext
-
-
-
-
Field Detail
-
VER_LATEST
public static final java.lang.String VER_LATEST
- See Also:
- Constant Field Values
-
VER_PREVIOUS
public static final java.lang.String VER_PREVIOUS
- See Also:
- Constant Field Values
-
VER_CURRENT
public static final java.lang.String VER_CURRENT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DiffLinkTag
public DiffLinkTag()
-
-
Method Detail
-
initTag
public void initTag()
Description copied from class:WikiTagBaseThis 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:
initTagin classWikiLinkTag
-
getVersion
public final java.lang.String getVersion()
-
setVersion
public void setVersion(java.lang.String arg)
-
getNewVersion
public final java.lang.String getNewVersion()
-
setNewVersion
public void setNewVersion(java.lang.String arg)
-
doWikiStartTag
public final int doWikiStartTag() throws java.io.IOException
Description copied from class:WikiTagBaseThis method is allowed to do pretty much whatever he wants. We then catch all mistakes.- Specified by:
doWikiStartTagin classWikiTagBase- Throws:
java.io.IOException
-
-