Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setFeatureMap (0.06 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java

                xpathTransformer.setName("xpathTransformer");
                Map<String, String> featureMap = newHashMap();
                featureMap.put("http://xml.org/sax/features/namespaces", "false");
                xpathTransformer.setFeatureMap(featureMap);
                Map<String, String> propertyMap = newHashMap();
                xpathTransformer.setPropertyMap(propertyMap);
                Map<String, String> childUrlRuleMap = newHashMap();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            fileTransformer.setName("fileTransformer");
            Map<String, String> featureMap = newHashMap();
            featureMap.put("http://xml.org/sax/features/namespaces", "false");
            fileTransformer.setFeatureMap(featureMap);
            Map<String, String> propertyMap = newHashMap();
            fileTransformer.setPropertyMap(propertyMap);
            Map<String, String> childUrlRuleMap = newHashMap();
            childUrlRuleMap.put("//A", "href");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java

            return featureMap;
        }
    
        /**
         * Sets the map of parser features.
         *
         * @param featureMap the feature map to set
         */
        public void setFeatureMap(final Map<String, String> featureMap) {
            this.featureMap = featureMap;
        }
    
        /**
         * Gets the map of parser properties.
         *
         * @return the property map
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java

            return featureMap;
        }
    
        /**
         * Sets the map of parser features.
         *
         * @param featureMap the feature map to set
         */
        public void setFeatureMap(final Map<String, String> featureMap) {
            this.featureMap = featureMap;
        }
    
        /**
         * Gets the map of parser properties.
         *
         * @return the property map
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            htmlTransformer.setName("htmlTransformer");
            Map<String, String> featureMap = newHashMap();
            featureMap.put("http://xml.org/sax/features/namespaces", "false");
            htmlTransformer.setFeatureMap(featureMap);
            Map<String, String> propertyMap = newHashMap();
            htmlTransformer.setPropertyMap(propertyMap);
            Map<String, String> childUrlRuleMap = newHashMap();
            childUrlRuleMap.put("//A", "href");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                    .<FileTransformer> singleton("fileTransformer", FileTransformer.class, transformer -> {
                        transformer.setName("fileTransformer");
                        transformer.setFeatureMap(featureMap);
                        transformer.setPropertyMap(propertyMap);
                        transformer.setChildUrlRuleMap(childUrlRuleMap);
                    })
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

            return featureMap;
        }
    
        /**
         * Sets the map of parser features.
         *
         * @param featureMap the feature map to set
         */
        public void setFeatureMap(final Map<String, String> featureMap) {
            this.featureMap = featureMap;
        }
    
        /**
         * Gets the map of parser properties.
         *
         * @return the property map
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 28.5K bytes
    - Viewed (0)
Back to top