Here you can find the source of isElement(Node node)
public static boolean isElement(Node node)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; public class Main { public static boolean isElement(Node node) { return node.getNodeType() == Node.ELEMENT_NODE; }/*from ww w.j a va2s . c om*/ }