Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 68 for setAllPageCount (0.1 seconds)

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

            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Returns true if a previous page exists.
         *
         * @return True if a previous page exists.
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 6.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return True if a previous page exists, false otherwise
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 7.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Returns true if a previous page exists.
         *
         * @return True if a previous page exists.
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 5.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            return allPageCount;
        }
    
        /**
         * Sets the total number of pages available for pagination.
         *
         * @param allPageCount the total page count to set
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if a previous page exists for pagination.
         *
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 7.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise.
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 5.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java

            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total number of pages.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Returns true if a previous page exists.
         *
         * @return True if a previous page exists.
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount The total page count.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if there is a previous page.
         * @return True if a previous page exists, false otherwise.
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 6.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount the total page count
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if there is a previous page.
         * @return true if previous page exists, false otherwise
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 5.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount The total number of pages.
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if a previous page exists.
         * @return true if a previous page exists, false otherwise.
         */
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 6.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/pager/UserPager.java

        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount the total page count
         */
        public void setAllPageCount(final int allPageCount) {
            this.allPageCount = allPageCount;
        }
    
        /**
         * Checks if there is a previous page available.
         *
         * @return true if previous page exists, false otherwise
    Created: 2026-03-31 13:07
    - Last Modified: 2025-07-17 08:28
    - 6.3K bytes
    - Click Count (0)
Back to Top