Example usage for org.w3c.dom EntityReference getNodeName

List of usage examples for org.w3c.dom EntityReference getNodeName

Introduction

In this page you can find the example usage for org.w3c.dom EntityReference getNodeName.

Prototype

public String getNodeName();

Source Link

Document

The name of this node, depending on its type; see the table above.

Usage

From source file:TreeDumper2.java

private void dumpEntityReferenceNode(EntityReference node, String indent) {
    System.out.println(indent + "ENTITY REFERENCE: " + node.getNodeName());
}