Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addFeature (0.04 sec)

  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.");
            }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

            attributeMap.put(name, value);
        }
    
        /**
         * Adds a feature to the factory.
         * @param key The key of the feature.
         * @param value The value of the feature.
         */
        public void addFeature(final String key, final String value) {
            featureMap.put(key, value);
        }
    
        /**
         * Adds a field rule.
         * @param name The name of the field.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

         * Adds a parser feature configuration.
         *
         * @param key the feature key
         * @param value the feature value
         * @throws CrawlerSystemException if key or value is null
         */
        public void addFeature(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)
  4. 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"/>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top