Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for highlightInfo (0.08 sec)

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

            return type;
        }
    
        /**
         * Sets the highlighting type with fluent interface.
         *
         * @param type the highlighting type to set
         * @return this HighlightInfo instance for method chaining
         */
        public HighlightInfo type(final String type) {
            this.type = type;
            return this;
        }
    
        /**
         * Gets the fragment size.
         *
         * @return the fragment size in characters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

            return null;
        }
    
        @Override
        public FacetInfo getFacetInfo() {
            return null;
        }
    
        @Override
        public HighlightInfo getHighlightInfo() {
            return new HighlightInfo();
        }
    
        @Override
        public String getSort() {
            return sort;
        }
    
        /**
         * Initializes the form with default values from configuration.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

    import java.util.Locale;
    import java.util.Map;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.entity.FacetInfo;
    import org.codelibs.fess.entity.GeoInfo;
    import org.codelibs.fess.entity.HighlightInfo;
    import org.codelibs.fess.entity.SearchRequestParams;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.util.LaRequestUtil;
    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/entity/SearchRequestParams.java

         */
        public abstract FacetInfo getFacetInfo();
    
        /**
         * Returns the highlight info.
         *
         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
        public abstract String getSort();
    
        /**
         * Returns the start position.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top