Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for navigator (0.04 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            }
    
            /**
             * Sets the page range size for navigation.
             *
             * @param pageRangeSize the page range size to set
             */
            public void setPageRangeSize(final int pageRangeSize) {
                this.pageRangeSize = pageRangeSize;
            }
    
            /**
             * Creates a list of page numbers for navigation.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

         *
         * This method fetches stemmer override entries with pagination support, updating
         * the provided pager with the current page state and navigation information.
         *
         * @param dictId The ID of the stemmer override dictionary to query
         * @param stemmerOvberridePager The pager object for pagination control and state
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                return encodeId(buf.toString());
            }
            return StringUtil.EMPTY;
        }
    
        /**
         * Creates a list of path navigation items for breadcrumb display.
         *
         * @param prefix the current path prefix
         * @return list of path item maps for navigation
         */
        protected static List<Map<String, String>> createPathItems(final String prefix) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  5. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val executor = Executors.newScheduledThreadPool(1)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    return value + ELLIPSIS;
                }
                return value;
            }
            return null;
        }
    
        /**
         * Creates text fragments from highlight fields for URL fragment navigation.
         *
         * @param fields the highlight fields
         * @return array of text fragments
         */
        public TextFragment[] createTextFragmentsByHighlight(final HighlightField[] fields) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top