Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nobuilder (0.27 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

    import org.w3c.dom.Element
    import org.w3c.dom.Node
    import org.w3c.dom.NodeList
    
    class DomBuilder extends BuilderSupport {
        Document document
        Node parent
        List elements = []
    
        def DomBuilder(Document document) {
            this.document = document
            this.parent = document
        }
    
        def DomBuilder(Node parent) {
            this.document = parent.ownerDocument
            this.parent = parent
        }
    
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Viewed (0)
Back to top