Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for pagination (0.16 sec)

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

         */
        private boolean existPrePage;
    
        /**
         * Indicates whether a next page exists for pagination.
         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers to display for pagination navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records to display per page.
         */
        private int pageSize;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

         * Default constructor for GroupPager.
         * Initializes the pager with default values for pagination settings.
         */
        public GroupPager() {
            // Default constructor
        }
    
        /**
         * Clears all pagination data and search criteria, resetting the pager to its initial state.
         * This method resets record counts, pagination flags, and search parameters to their default values.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        }
    
        /**
         * Gets the list of page numbers for pagination.
         *
         * @return The list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination.
         *
         * @param pageNumberList The list of page numbers
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for bad word management with pagination support.
     * Provides pagination functionality for bad word lists.
     */
    public class BadWordPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size for bad word pagination. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pagination support class for ElevateWord entities.
     * Provides pagination functionality and holds search form parameters
     * for elevate word management in the admin interface.
     */
    public class ElevateWordPager implements Serializable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/UserPager.java

     */
    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for handling user list pagination.
     * This class manages pagination state and user search criteria for the user management interface.
     */
    public class UserPager implements Serializable {
    
        /**
         * Default constructor for UserPager.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/GroupService.java

            // Default constructor
        }
    
        /**
         * Retrieves a paginated list of groups based on the provided pager criteria.
         * Updates the pager with pagination information including page numbers and ranges.
         *
         * @param groupPager the pager containing pagination and search criteria
         * @return a list of groups matching the criteria
         */
        public List<Group> getGroupList(final GroupPager groupPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

    import org.codelibs.fess.util.FacetResponse;
    
    /**
     * Data container for search results rendering.
     *
     * This class holds all the data needed to render search results in the UI,
     * including the actual search results, pagination information, facet data,
     * execution timing, and highlighting parameters.
     */
    public class SearchRenderData {
    
        /** List of search result documents. */
        protected List<Map<String, Object>> documentItems;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java

        public SchedulerPager() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * Total number of records.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        private boolean existNextPage;
    
        /**
         * The list of page numbers to display in the pagination component.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records to display per page.
         */
        private int pageSize;
    
        /**
         * The current page number (1-based) for pagination.
         */
        private int currentPageNumber;
    
        /**
         * Crawling information ID.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top