- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for appendAttr (0.12 sec)
-
src/main/java/org/codelibs/core/xml/DomUtil.java
*/ public static void appendAttrs(final NamedNodeMap attrs, final StringBuilder buf) { assertArgumentNotNull("attrs", attrs); assertArgumentNotNull("buf", buf); final int length = attrs.getLength(); for (int i = 0; i < length; ++i) { final Attr attr = (Attr) attrs.item(i); buf.append(' '); appendAttr(attr, buf); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.5K bytes - Viewed (0)