- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for addAttribute (0.04 sec)
-
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
nodeMatchingBoth.addAttribute("href", "#"); nodeMatchingBoth.addAttribute("class", "nav-link"); assertTrue(tagWithAttrAndCss.matches(nodeMatchingBoth)); MockNode nodeWithWrongAttr = new MockNode("a"); nodeWithWrongAttr.addAttribute("href", "http://example.com"); nodeWithWrongAttr.addAttribute("class", "nav-link");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
return value; } /** * Adds an attribute to the factory. * @param name The name of the attribute. * @param value The value of the attribute. */ public void addAttribute(final String name, final Object value) { attributeMap.put(name, value); } /** * Adds a feature to the factory. * @param key The key of the feature.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
final Attribute attr = new BasicAttribute(name, value); final ModificationItem mod = new ModificationItem(DirContext.ADD_ATTRIBUTE, attr); modifyList.add(mod); } /** * Modifies an entry by replacing an attribute. * * @param modifyList The list of modification items.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0)