Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addFeature (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java

            return null;
        }
    
        /**
         * Adds a feature to the extractor.
         *
         * @param key   the key of the feature
         * @param value the value of the feature
         */
        public void addFeature(final String key, final String value) {
            if (StringUtil.isBlank(key) || StringUtil.isBlank(value)) {
                throw new CrawlerSystemException("key or value is null.");
            }
    
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Oct 04 08:47:19 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    		class="org.codelibs.fess.crawler.extractor.impl.XmlExtractor" />
    	<component name="htmlXpathExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.HtmlXpathExtractor">
    		<postConstruct name="addFeature">
    			<arg>"http://xml.org/sax/features/namespaces"</arg>
    			<arg>"false"</arg>
    		</postConstruct>
    	</component>
    	<component name="emlExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.EmlExtractor"/>
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Nov 23 03:46:53 GMT 2025
    - 50.1K bytes
    - Click Count (0)
Back to Top