Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for navigator (0.06 sec)

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

        }
    
        /**
         * Gets the list of page numbers for pagination navigation.
         *
         * @return the list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination navigation.
         *
         * @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.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

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

        }
    
        /**
         * Gets the list of page numbers for pagination navigation.
         * @return The list of page numbers.
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination navigation.
         * @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
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

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

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

        }
    
        /**
         * Gets the list of page numbers for pagination navigation.
         *
         * @return the list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination navigation.
         *
         * @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.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

        }
    
        /**
         * Gets the list of page numbers for navigation.
         *
         * @return A list of page numbers.
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for navigation.
         *
         * @param pageNumberList A list of page numbers.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

          a = values.get(0);
          if (values.size() >= 3) {
            b = values.get(1);
            c = values.get(2);
          }
        }
      }
    
      /** Resets the contents of navigableSet to have elements a, c, for the navigation tests. */
      protected void resetWithHole() {
        super.resetContainer(getSubjectGenerator().create(a, c));
        navigableSet = (NavigableSet<E>) getSet();
      }
    
      @CollectionFeature.Require(SUPPORTS_REMOVE)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final ListForm form) {
            saveToken();
            return doSearch(form);
        }
    
        /**
         * Navigates to the previous page of search results.
         *
         * @param form the list form containing current search criteria
         * @return HTML response with previous page results
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/app/web/error/ErrorAction.java

    import org.lastaflute.web.response.HtmlResponse;
    
    /**
     * Action class for handling general error pages.
     * This action displays error pages when unhandled exceptions occur
     * during search operations or page navigation.
     */
    public class ErrorAction extends FessSearchAction {
    
        /**
         * Default constructor for ErrorAction.
         */
        public ErrorAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top