Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 Weave (Web-based Analysis and Visualization Environment)
 Copyright (C) 2008-2011 University of Massachusetts Lowell
    
 This file is a part of Weave.
    
 Weave is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License, Version 3,
 as published by the Free Software Foundation.
    
 Weave is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
    
 You should have received a copy of the GNU General Public License
 along with Weave.  If not, see <http://www.gnu.org/licenses/>.
 */

import org.w3c.dom.Node;

import org.w3c.dom.Text;

public class Main {
    public static Node insertTextNodeAfter(String text, Node sibling) {
        Text newNode = sibling.getOwnerDocument().createTextNode(text);
        return sibling.getParentNode().insertBefore(newNode, sibling.getNextSibling());
    }
}