Here you can find the source of isText(final Node n)
public static boolean isText(final Node n)
//package com.java2s; //License from project: LGPL import org.w3c.dom.Node; import org.w3c.dom.Text; public class Main { public static boolean isText(final Node n) { return n instanceof Text; }/*from w w w . j a va 2s .c om*/ }