Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1037 → Rev 1038

/hostadmiral/trunk/src/ak/hostadmiral/core/taglib/list/LastPageTag.java
1,6 → 1,6
package ak.hostadmiral.core.taglib.list;
 
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspException;
import ak.hostadmiral.util.CollectionInfo;
 
public class LastPageTag
7,13 → 7,13
extends PageTagBase
{
protected int getDisplayPage()
throws JspException
{
CollectionInfo info = getCollectionInfo();
 
if(info == null)
return 0;
else
return info.getLastPage();
}
throws JspException
{
CollectionInfo info = getCollectionInfo();
 
if(info == null)
return 0;
else
return info.getLastPage();
}
}