Package org.archive.format.gzip.zipnum.ZipNumIndex

Examples of org.archive.format.gzip.zipnum.ZipNumIndex.PageResult


   
    if ((query.pageSize <= 0) || ((query.pageSize > maxPageSize) && !allAccess)) {
      query.pageSize = maxPageSize;
    }

    PageResult pageResult = zipnumSource.getNthPage(startEndUrl, query.page, query.pageSize, query.showNumPages);

    if (query.showNumPages) {
      responseWriter.printNumPages(pageResult.numPages, true);
      return null;
    } else {
View Full Code Here

TOP

Related Classes of org.archive.format.gzip.zipnum.ZipNumIndex.PageResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.