Example usage for org.w3c.dom NodeList toString

List of usage examples for org.w3c.dom NodeList toString

Introduction

In this page you can find the example usage for org.w3c.dom NodeList toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:org.apache.struts2.views.xslt.BeanAdapter.java

public NodeList getChildNodes() {
    NodeList nl = super.getChildNodes();
    // Log child nodes for debug:
    if (log.isDebugEnabled() && nl != null) {
        log.debug("BeanAdapter getChildNodes for: " + getTagName());
        log.debug(nl.toString());
    }//from   w  ww .j  a  v a 2s .  c  o  m
    return nl;
}