Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for getAllPageCount (0.2 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setAllPageCount(0);
            assertEquals(0, searchRenderData.getAllPageCount());
    
            // Test with positive values
            searchRenderData.setAllPageCount(5);
            assertEquals(5, searchRenderData.getAllPageCount());
    
            searchRenderData.setAllPageCount(1000);
            assertEquals(1000, searchRenderData.getAllPageCount());
    
            // Test with negative value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList.calculatePageInfo();
            assertEquals(20, qrList.getPageSize());
            assertEquals(1, qrList.getCurrentPageNumber());
            assertEquals(0, qrList.getAllRecordCount());
            assertEquals(1, qrList.getAllPageCount());
            assertEquals(false, qrList.isExistPrevPage());
            assertEquals(false, qrList.isExistNextPage());
            assertEquals(0, qrList.getCurrentStartRecordNumber());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Returns the total number of pages.
         *
         * @return The total number of pages.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            assertEquals(3, result1.getAllRecordCount());
            assertEquals(1, result1.getAllPageCount());
    
            // Get first two items
            PagingList<CharMappingItem> result2 = charMappingFile.selectList(0, 2);
            assertEquals(2, result2.size());
            assertEquals(3, result2.getAllRecordCount());
            assertEquals(2, result2.getAllPageCount());
    
            // Get last item
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return The total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available for pagination.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages available for pagination.
         *
         * @param allPageCount the total page count to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Returns the total number of pages.
         *
         * @return The total number of pages.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return The total page count.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return The total page count.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount The total page count.
         */
        public void setAllPageCount(final int allPageCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Returns the total number of pages.
         *
         * @return The total number of pages.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top