Here you can find the source of isText(Node node)
public static boolean isText(Node node)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; public class Main { public static boolean isText(Node node) { return node.getNodeType() == Node.TEXT_NODE || node.getNodeType() == Node.CDATA_SECTION_NODE; }/* w w w . jav a 2 s .co m*/ }