Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 486 for pageY (0.01 sec)

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

        /** Default page size for pagination. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number (first page). */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for managing stopwords pagination.
     * This class handles the state and logic for paginating through a list of stopwords,
     * including total record count, page size, and current page number.
     */
    public class StopwordsPager implements Serializable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/RolePager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets 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.
         */
        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
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        /**
         * Sets whether a next page exists.
         *
         * @param existNextPage true if a next page exists, false otherwise
         */
        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of items per page.
         * If the page size is not set or is zero or negative, returns the default page size.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages available. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating if a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        }
    
        /**
         * Gets the total number of pages based on record count and page size.
         *
         * @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
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /**
         * Sets the number of records per page.
         *
         * @param pageSize the page size
         */
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
        }
    
        /**
         * Gets the current page number.
         * If current page number is not set or is invalid, returns the default current page number.
         *
         * @return the current page number
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

        /** Default page size for pagination. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number (first page). */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for managing synonym pagination.
     * This class handles the state and logic for paginating through a list of synonyms,
     * including total record count, page size, and current page number.
     */
    public class SynonymPager implements Serializable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

        /**
         * Whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers for navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records per page.
         */
        private int pageSize;
    
        /**
         * The current page number.
         */
        private int currentPageNumber;
    
        /**
         * The ID.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top