- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for annotated (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
*/ public SynonymCreator() { super("synonym.*\\.txt"); } /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
*/ public StemmerOverrideCreator() { super("stemmer_override.*\\.txt"); } /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
*/ public StopwordsCreator() { super("stopwords.*\\.txt"); } /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
/** * Default constructor for RelatedContentHelper. * The constructor does not perform any initialization logic as the actual * initialization is handled by the {@link #init()} method annotated with * {@code @PostConstruct}. */ public RelatedContentHelper() { super(); } private static final Logger logger = LogManager.getLogger(RelatedContentHelper.class); /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.2K bytes - Viewed (0)