- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for importNodes (0.06 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy
parent.appendChild(child) } def appendChild(Node node) { if (!current) { elements << (Element) document.importNode(node, true) } else { current.appendChild(document.importNode(node, true)) } } def appendChildren(Iterable<? extends Node> nodes) { nodes.each { appendChild(it) } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyDetailRenderer.java
} } warningsRenderer.renderTo(propertyDoc, "property", section); for (Element element : propertyDoc.getComment()) { section.appendChild(document.importNode(element, true)); } if (!propertyDoc.getAdditionalValues().isEmpty()) { Element segmentedlist = document.createElement("segmentedlist"); section.appendChild(segmentedlist);
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 3.5K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodDetailRenderer.java
title.appendChild(document.createTextNode(")")); warningsRenderer.renderTo(methodDoc, "method", section); for (Element element : methodDoc.getComment()) { section.appendChild(document.importNode(element, true)); } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDescriptionRenderer.java
parent.appendChild(document.importNode(element, true)); } NodeList otherContent = classDoc.getClassSection().getChildNodes(); for (int i = 0; i < otherContent.getLength(); i++) { Node child = otherContent.item(i); if (child instanceof Element && !((Element) child).getTagName().equals("section")) { parent.appendChild(document.importNode(child, true)); } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy
factory.setNamespaceAware(true) DocumentBuilder builder = factory.newDocumentBuilder() def parsed = builder.parse(new InputSource(new StringReader(str))).documentElement return document ? document.importNode(parsed, true) : parsed } def formatTree(Closure cl) { withCategories { return formatTree(cl.call()) } } def withCategories(Closure cl) {
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy
cl.delegate = builder cl.call() return builder.elements[0] } public static void leftShift(Node parent, Node node) { parent.appendChild(parent.ownerDocument.importNode(node, true)) } public static void addFirst(Node parent, Closure cl) { DomBuilder builder = new DomBuilder(parent.ownerDocument, null) cl.delegate = builder cl.call()
Registered: 2025-05-28 11:36 - Last Modified: 2022-08-11 15:32 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodTableRenderer.java
td.appendChild(caution); caution.appendChild(document.createTextNode("Incubating")); } td.appendChild(document.importNode(methodDoc.getDescription(), true)); } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 3.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockTableRenderer.java
td.appendChild(caution); caution.appendChild(document.createTextNode("Incubating")); } td.appendChild(document.importNode(blockDoc.getDescription(), true)); } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyTableRenderer.java
td.appendChild(caution); caution.appendChild(document.createTextNode("Replaced")); } td.appendChild(document.importNode(propDoc.getDescription(), true)); } }
Registered: 2025-05-28 11:36 - Last Modified: 2020-12-09 08:14 - 3.1K bytes - Viewed (0) -
api/go1.6.txt
pkg go/build, const IgnoreVendor ImportMode pkg go/build, type Package struct, InvalidGoFiles []string pkg go/constant, func ToComplex(Value) Value pkg go/constant, func ToFloat(Value) Value pkg go/constant, func ToInt(Value) Value pkg go/constant, type Value interface, ExactString() string pkg go/types, method (*Package) SetName(string) pkg go/types, type ImportMode int
Registered: 2025-05-27 11:13 - Last Modified: 2016-01-13 23:40 - 12.9K bytes - Viewed (0)