Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 122 for dictionary (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/SearchForm.java

    /**
     * The search form for Mapping.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for mapping dictionary operations.
         */
        @Required
        public String dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1007 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/SearchForm.java

    /**
     * The search form for Stopwords.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for stopwords dictionary operations.
         */
        @Required
        public String dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1013 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java

    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for protected words dictionary administration.
     * Extends BaseSearchDictBody with protected words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/SearchBody.java

    package org.codelibs.fess.app.web.api.admin.dict.stemmeroverride;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stemmer override dictionary administration.
     * Extends BaseSearchDictBody with stemmer override dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stop words dictionary administration.
     * Extends BaseSearchDictBody with stop words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.joblog_delete_all_link=Delete All
    labels.joblog_delete_all_confirmation=Are you sure you want to delete all?
    labels.joblog_delete_all_cancel=Cancel
    labels.dict_configuration=Dictionary List
    labels.dict_list_title=Dictionary List
    labels.dict_list_link=Dictionary
    labels.dictionary_name=Name
    labels.dictionary_type=Type
    labels.dict_synonym_configuration=Synonym List
    labels.dict_synonym_title=Synonym List
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    
    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Dictionary management.
     *
     */
    public class AdminDictAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminDictAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java

    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for stemmer override dictionary management.
     *
     * This class provides pagination functionality for displaying stemmer override
     * dictionary entries in the administrative interface. It manages page state,
     * navigation controls, and provides methods for calculating page boundaries
     * and navigation elements.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "view", names);
        }
    
        /**
         * Gets the path to dictionary files directory.
         *
         * @param names the path components to append to the dictionary directory
         * @return the Path object pointing to the dictionary directory
         */
        public static Path getDictionaryPath(final String... names) {
            return getPath("WEB-INF/", "dict", names);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/DownloadBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stemmeroverride;
    
    import org.codelibs.fess.app.web.admin.dict.stemmeroverride.DownloadForm;
    
    /**
     * Download body for stemmer override dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading stemmer override dictionaries via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top