Here you can find the source of addText(Node parent, String value)
public static Node addText(Node parent, String value)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; import org.w3c.dom.Text; public class Main { public static Node addText(Node parent, String value) { Text text = parent.getOwnerDocument().createTextNode(value); parent.appendChild(text);/*from w w w. jav a2s . c o m*/ return text; } }