Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/entity/QueryContext.java

            }
            return Collections.emptyList();
        }
    
        /**
         * Adds a query term to the highlighted query set.
         * @param text The query text to highlight.
         */
        public void addHighlightedQuery(final String text) {
            if (highlightedQuerySet != null) {
                highlightedQuerySet.add(text);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

     */
    public class HighlightInfo {
        /** The highlighting type (e.g., plain, html). */
        private String type;
        /** The size of each highlighted fragment in characters. */
        private int fragmentSize;
        /** The maximum number of highlighted fragments to return. */
        private int numOfFragments;
        /** The offset for fragment positioning. */
        private int fragmentOffset;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /**
         * Returns the facet info.
         *
         * @return The facet info.
         */
        public abstract FacetInfo getFacetInfo();
    
        /**
         * Returns the highlight info.
         *
         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

     */
    public class CacheForm {
    
        /** Document ID for cache operations. */
        @Required
        @Size(max = 100)
        public String docId;
    
        /** Highlight query parameters. */
        public String[] hq;
    
        /** Search query parameter for error page. */
        public String q;
    
        /** Number of results parameter for error page. */
        public String num;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

        /**
         * Retrieves and displays cached content for a specific document.
         *
         * @param form the cache form containing document ID and highlight query
         * @return ActionResponse containing the cached document content or error redirect
         */
        @Execute
        public ActionResponse index(final CacheForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            assertNotNull(result);
            // Just check it's a FuzzyQueryBuilder
            assertTrue(result instanceof FuzzyQueryBuilder);
        }
    
        // Test field log and highlight additions
        public void test_convertFuzzyQuery_contextUpdates() {
            QueryContext context = new QueryContext("test", false);
            String searchText = "fuzzytext";
            Term term = new Term("title", searchText);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top