Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 59 for setAllRecordCount (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         * @param allRecordCount The total record count.
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return The total page count.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            return allRecordCount;
        }
    
        /**
         * Sets the total number of records matching the search criteria.
         *
         * @param allRecordCount The total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages based on record count and page size.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/pager/UserPager.java

            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return the total page count
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

            return allRecordCount;
        }
    
        /**
         * Sets the total number of records available.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available.
         *
         * @return the total page count
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

            return allRecordCount;
        }
    
        /**
         * Sets the total number of records.
         * @param allRecordCount The total number of records.
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return The total number of pages.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        }
    
        /**
         * Sets the total number of records available across all pages.
         *
         * @param allRecordCount the total record count to set
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available for pagination.
         *
         * @return the total page count
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/pager/SynonymPagerTest.java

            assertEquals(25, synonymPager.getPageSize());
            assertEquals(1, synonymPager.getCurrentPageNumber());
            assertNull(synonymPager.id);
    
            synonymPager.setAllRecordCount(999);
            assertEquals(999, synonymPager.getAllRecordCount());
            synonymPager.setAllPageCount(999);
            assertEquals(999, synonymPager.getAllPageCount());
            synonymPager.setExistPrePage(true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/app/pager/LabelTypePagerTest.java

            assertEquals(1, labelTypePager.getCurrentPageNumber());
            assertNull(labelTypePager.id);
            assertNull(labelTypePager.name);
            assertNull(labelTypePager.versionNo);
    
            labelTypePager.setAllRecordCount(999);
            assertEquals(999, labelTypePager.getAllRecordCount());
            labelTypePager.setAllPageCount(999);
            assertEquals(999, labelTypePager.getAllPageCount());
            labelTypePager.setExistPrePage(true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/pager/RelatedContentPagerTest.java

            assertNull(relatedContentPager.id);
            assertNull(relatedContentPager.term);
            assertNull(relatedContentPager.versionNo);
    
            relatedContentPager.setAllRecordCount(999);
            assertEquals(999, relatedContentPager.getAllRecordCount());
            relatedContentPager.setAllPageCount(999);
            assertEquals(999, relatedContentPager.getAllPageCount());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/app/pager/RoleTypePagerTest.java

            assertEquals(1, roleTypePager.getCurrentPageNumber());
            assertNull(roleTypePager.id);
            assertNull(roleTypePager.name);
            assertNull(roleTypePager.versionNo);
    
            roleTypePager.setAllRecordCount(999);
            assertEquals(999, roleTypePager.getAllRecordCount());
            roleTypePager.setAllPageCount(999);
            assertEquals(999, roleTypePager.getAllPageCount());
            roleTypePager.setExistPrePage(true);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
Back to Top