- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for synonymCreator (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
*/ public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); /** * Constructs a new creator for synonym dictionaries. * It sets the file pattern to match files starting with "synonym" * and ending with ".txt". */ public SynonymCreator() { super("synonym.*\\.txt"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
} /* public void test_storeSynonymFiles() throws Exception { final DictionaryManager dictionaryManager = new DictionaryManager(); final SynonymCreator synonymCreator = new SynonymCreator(); final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); dictionaryManager.store(synonymFile, file1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0)