Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for dictionaryManager (0.07 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

     *
     */
    public class DictionaryManager {
        private static final Logger logger = LogManager.getLogger(DictionaryManager.class);
    
        /** List of dictionary creators for handling different dictionary types */
        protected List<DictionaryCreator> creatorList = new ArrayList<>();
    
        /**
         * Default constructor for DictionaryManager.
         * Creates a new dictionary manager with an empty creator list.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

    /**
     * Service class for Kuromoji.
     */
    public class KuromojiService {
        /** The dictionary manager. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** The Fess config. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
        public KuromojiService() {
            // do nothing
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

                }
            };
            systemHelper.init();
            ComponentUtil.register(systemHelper, "systemHelper");
    
            // Initialize DictionaryManager mock
            org.codelibs.fess.dict.DictionaryManager dictionaryManager = new org.codelibs.fess.dict.DictionaryManager() {
                @Override
                public org.codelibs.curl.CurlResponse getContentResponse(org.codelibs.fess.dict.DictionaryFile<?> file) {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

        @Resource
        protected DictionaryManager dictionaryManager;
    
        /**
         * Retrieves all available dictionary files.
         *
         * @return JSON response containing list of dictionary files
         */
        // GET /api/admin/dict
        @Execute
        public JsonResponse<ApiResult> get$index() {
            final DictionaryFile<? extends DictionaryItem>[] dictFiles = dictionaryManager.getDictionaryFiles();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
         * @return this dictionary file instance for method chaining
         */
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
            this.dictionaryManager = dictionaryManager;
            return this;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

                    }
                }
            };
            systemHelper.init();
            ComponentUtil.register(systemHelper, "systemHelper");
    
            // Initialize DictionaryManager mock
            dictionaryManager = new DictionaryManager() {
                @Override
                public CurlResponse getContentResponse(DictionaryFile<?> file) {
                    try {
                        // Return a CurlResponse with the file's content
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

         * Default constructor.
         */
        public ProtwordsService() {
            // Default constructor
        }
    
        /** Dictionary manager for handling dictionary files */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Configuration for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of protected words items.
         * @param dictId the dictionary ID
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

     */
    public class StemmerOverrideService {
    
        /** Dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Fess configuration for accessing system settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         */
        public CharMappingService() {
            // Default constructor
        }
    
        /**
         * Dictionary manager for accessing and managing dictionary files.
         */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

                    }
                }
            };
            systemHelper.init();
            ComponentUtil.register(systemHelper, "systemHelper");
    
            // Initialize DictionaryManager mock
            dictionaryManager = new DictionaryManager() {
                @Override
                public CurlResponse getContentResponse(org.codelibs.fess.dict.DictionaryFile<?> file) {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
Back to top