package egovframework.com.cmm; import egovframework.rte.ptl.mvc.tags.ui.pagination.AbstractPaginationRenderer; import javax.servlet.ServletContext; import org.springframework.web.context.ServletContextAware; public class ImagePaginationRenderer extends AbstractPaginationRenderer implements ServletContextAware{ private ServletContext servletContext; public ImagePaginationRenderer() { } public void initVariables(){ firstPageLabel = "
  • 첫 페이지
  • "; previousPageLabel = "
  • 이전 페이지
  • "; currentPageLabel = "
  • {0}
  • "; otherPageLabel = "
  • {2}
  • "; nextPageLabel = "
  • 다음 페이지
  • "; lastPageLabel = "
  • 끝 페이지
  • "; } public void setServletContext(ServletContext servletContext) { this.servletContext = servletContext; initVariables(); } }