Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getPostTags (0.2 seconds)

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

            return this;
        }
    
        /**
         * Gets the custom post-tags for highlighting.
         *
         * @return the post-tags array, or null if using defaults
         */
        public String[] getPostTags() {
            return postTags;
        }
    
        /**
         * Sets the custom post-tags for highlighting with fluent interface.
         *
         * @param postTags the post-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 HighlightBuilder highlightBuilder = new HighlightBuilder();
                final String[] preTags = highlightInfo.getPreTags();
                final String[] postTags = highlightInfo.getPostTags();
                if (preTags != null) {
                    highlightBuilder.preTags(preTags);
                }
                if (postTags != null) {
                    highlightBuilder.postTags(postTags);
                }
    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