- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for addCreator (0.1 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
} @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K 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); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
} @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K 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); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
} @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
} @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
final DictionaryManager dictionaryManager = new DictionaryManager(); dictionaryManager.init(); assertEquals(0, dictionaryManager.creatorList.size()); dictionaryManager.addCreator(new CharMappingCreator()); dictionaryManager.init(); assertEquals(1, dictionaryManager.creatorList.size()); } /* public void test_storeSynonymFiles() throws Exception {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0)