Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for startWithOffset (0.14 sec)

  1. src/main/java/org/codelibs/fess/util/QueryResponseList.java

            }
        }
    
        protected void calculatePageInfo() {
            int startWithOffset = start - offset;
            if (startWithOffset < 0) {
                startWithOffset = 0;
            }
            allPageCount = (int) ((allRecordCount - 1) / pageSize) + 1;
            existPrevPage = startWithOffset > 0;
            existNextPage = startWithOffset < (long) (allPageCount - 1) * (long) pageSize;
            currentPageNumber = start / pageSize + 1;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top