- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for annotated (0.19 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
* @return the component instance */ protected T get() { return instance; } /** * Destroys the component by calling any @PreDestroy annotated methods * and the destroyer function if present. */ protected void destroy() { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(instance.getClass());Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0)