Java XML Text Node Create createText(Document doc, Node parent, String contents)

Here you can find the source of createText(Document doc, Node parent, String contents)

Description

Creates a text node in the specified document.

License

Apache License

Parameter

Parameter Description
doc a parameter
parent a parameter
contents a parameter

Declaration

public static Text createText(Document doc, Node parent, String contents) 

Method Source Code

//package com.java2s;
/*// w w w  .  java2  s.  com
Copyright 2016, 2017 Institut National de la Recherche Agronomique
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

import org.w3c.dom.Document;

import org.w3c.dom.Node;

import org.w3c.dom.Text;

public class Main {
    /**
     * Creates a text node in the specified document.
     * @param doc
     * @param parent
     * @param contents
     */
    public static Text createText(Document doc, Node parent, String contents) {
        Text result = doc.createTextNode(contents);
        if (parent != null)
            parent.appendChild(result);
        return result;
    }
}

Related

  1. addTextElement(final Document document, final Element parentDom, final String namespace, final String name, final String value)
  2. addTextNode(Document document, Element ret, String tag, String value)
  3. addTextNode(Document XMLDocument, Node rootElement, String tagName, String text)
  4. appendElementChild(Document doc, Element parent, String name)
  5. appendElementChildWithText(Document doc, Element parent, String name, String text)
  6. createText(DocumentFragment fragment)
  7. createTextChildElement(Document doc, Node node, String name, String value)
  8. createTextElement(Document d, String textElementName, String textElementValue)
  9. createTextElement(Document doc, String elementName, String value)