- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for DictionaryManager (0.07 sec)
-
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) -
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) -
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) -
src/main/resources/fess_dict.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="fess_config.xml" /> <component name="dictionaryManager" class="org.codelibs.fess.dict.DictionaryManager"> </component> <component name="kuromojiDictCreator" class="org.codelibs.fess.dict.kuromoji.KuromojiCreator"> </component> <component name="synonymCreator"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 28 02:34:33 UTC 2018 - 990 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
/** * Sets the dictionary manager for this creator. * * @param dictionaryManager the dictionary manager to set */ public void setDictionaryManager(final DictionaryManager dictionaryManager) { this.dictionaryManager = dictionaryManager; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new CharMappingFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new dictionary file. * * @param id The ID of the dictionary file. * @param path The path of the dictionary file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new {@link StemmerOverrideFile} instance. * * @param id The unique identifier for the dictionary file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
} public void test_init() { final DictionaryManager dictionaryManager = new DictionaryManager(); dictionaryManager.init(); assertEquals(0, dictionaryManager.creatorList.size()); dictionaryManager.addCreator(new CharMappingCreator()); dictionaryManager.init(); assertEquals(1, dictionaryManager.creatorList.size()); } /*
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
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)