- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for setPropertyMap (0.08 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java
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(); childUrlRuleMap.put("//A", "href"); childUrlRuleMap.put("//AREA", "href");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 12.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java
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"); childUrlRuleMap.put("//AREA", "href"); childUrlRuleMap.put("//FRAME", "src");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 7.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
return propertyMap; } /** * Sets the map of parser properties. * * @param propertyMap the property map to set */ public void setPropertyMap(final Map<String, String> propertyMap) { this.propertyMap = propertyMap; } /** * Gets the pattern for extracting charset from meta tags. * * @return the meta charset pattern
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/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java
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"); childUrlRuleMap.put("//AREA", "href"); childUrlRuleMap.put("//FRAME", "src");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 13.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
transformer.setName("fileTransformer"); transformer.setFeatureMap(featureMap); transformer.setPropertyMap(propertyMap); transformer.setChildUrlRuleMap(childUrlRuleMap); }) .singleton("dataHelper", MemoryDataHelper.class)
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 19.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
return propertyMap; } /** * Sets the map of parser properties. * * @param propertyMap the property map to set */ public void setPropertyMap(final Map<String, String> propertyMap) { this.propertyMap = propertyMap; } /** * Gets the map of child URL extraction rules. * * @return the child URL rule 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)