Package org.apache.wiki.tags
Class SetPaginationTag
java.lang.Object
javax.servlet.jsp.tagext.TagSupport
org.apache.wiki.tags.WikiTagBase
org.apache.wiki.tags.SetPaginationTag
- All Implemented Interfaces:
Serializable,javax.servlet.jsp.tagext.IterationTag,javax.servlet.jsp.tagext.JspTag,javax.servlet.jsp.tagext.Tag,javax.servlet.jsp.tagext.TryCatchFinally
public class SetPaginationTag extends WikiTagBase
Calculate pagination string. Used for page-info and search results
Attributes
- start - start item of the page to be highlighted
- total - total number of items
- pagesize - total number of items per page
- maxlinks - number of page links to be generated
- fmtkey - pagination prefix of the i18n resource keys. Following keys are used:
fmtkey="info.pagination"- info.pagination.first=First
- info.pagination.last=Last
- info.pagination.previous=Previous
- info.pagination.next=Next
- info.pagination.all=all
- info.pagination.total= (Total items: {0} )
- info.pagination.show.title=Show items from {0} to {1}
- info.pagination.showall.title=Show all items
Following optional attributes can be parameterized with '%s' (item count)
- href - href of each page link. (optional)
- onclick - onclick of each page link. (optional)
- Since:
- 2.5.109
- See Also:
- Serialized Form
-
Field Summary
Fields inherited from class org.apache.wiki.tags.WikiTagBase
m_wikiContextFields inherited from class javax.servlet.jsp.tagext.TagSupport
id, pageContextFields inherited from interface javax.servlet.jsp.tagext.IterationTag
EVAL_BODY_AGAINFields inherited from interface javax.servlet.jsp.tagext.Tag
EVAL_BODY_INCLUDE, EVAL_PAGE, SKIP_BODY, SKIP_PAGE -
Constructor Summary
Constructors Constructor Description SetPaginationTag() -
Method Summary
Modifier and Type Method Description intdoWikiStartTag()This method is allowed to do pretty much whatever he wants.voidinitTag()This method is called when the tag is encountered within a new request, but before the setXXX() methods are called.voidsetFmtkey(String arg)voidsetHref(String arg)voidsetMaxlinks(int arg)voidsetOnclick(String arg)voidsetPagesize(int arg)voidsetStart(int arg)voidsetTotal(int arg)Methods inherited from class org.apache.wiki.tags.WikiTagBase
doCatch, doEndTag, doFinally, doStartTag, setId, setPageContextMethods inherited from class javax.servlet.jsp.tagext.TagSupport
doAfterBody, findAncestorWithClass, getId, getParent, getValue, getValues, release, removeValue, setParent, setValue
-
Constructor Details
-
SetPaginationTag
public SetPaginationTag()
-
-
Method Details
-
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 classWikiTagBase
-
setStart
-
setTotal
-
setPagesize
-
setMaxlinks
-
setFmtkey
-
setHref
-
setOnclick
-
doWikiStartTag
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:
IOException
-