Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/**
 * This file belongs to the BPELUnit utility and Eclipse plugin set. See enclosed
 * license file for more information.
 */

import org.w3c.dom.Element;

public class Main {
    public static void addAsFirstChild(Element element, Element newChild) {
        if (element.hasChildNodes()) {
            element.insertBefore(newChild, element.getChildNodes().item(0));
        } else {
            element.appendChild(newChild);
        }
    }
}