- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for highlight1 (0.12 seconds)
-
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); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Aug 19 14:09:36 GMT 2025 - 9.4K bytes - Click Count (0) -
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;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 10:17:07 GMT 2026 - 5.2K bytes - Click Count (0) -
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) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.9K bytes - Click Count (0) -
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;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.6K bytes - Click Count (0) -
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. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8K bytes - Click Count (0) -
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 @Test public void test_convertFuzzyQuery_contextUpdates() { QueryContext context = new QueryContext("test", false); String searchText = "fuzzytext";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.7K bytes - Click Count (0)