Here you can find the source of isListEmpty(NodeList list)
public static boolean isListEmpty(NodeList list)
//package com.java2s; import org.w3c.dom.*; public class Main { public static boolean isListEmpty(NodeList list) { return list.getLength() == 0; }// ww w . j av a 2 s. c o m }