Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getPreTags (0.04 seconds)

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

            return this;
        }
    
        /**
         * Gets the custom pre-tags for highlighting.
         *
         * @return the pre-tags array, or null if using defaults
         */
        public String[] getPreTags() {
            return preTags;
        }
    
        /**
         * Sets the custom pre-tags for highlighting with fluent interface.
         *
         * @param preTags the pre-tags to set
    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)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final String encoder = fessConfig.getQueryHighlightEncoder();
                final HighlightBuilder highlightBuilder = new HighlightBuilder();
                final String[] preTags = highlightInfo.getPreTags();
                final String[] postTags = highlightInfo.getPostTags();
                if (preTags != null) {
                    highlightBuilder.preTags(preTags);
                }
                if (postTags != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top