- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for addProperty (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
} /** * Adds a property to the extractor. * * @param key the key of the property * @param value the value of the property */ public void addProperty(final String key, final String value) { if (StringUtil.isBlank(key) || StringUtil.isBlank(value)) { throw new CrawlerSystemException("key or value is null."); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* Adds a parser property configuration. * * @param key the property key * @param value the property value * @throws CrawlerSystemException if key or value is null */ public void addProperty(final String key, final String value) { if (StringUtil.isBlank(key) || StringUtil.isBlank(value)) { throw new CrawlerSystemException("key or value is null."); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0)