Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import org.w3c.dom.Element;
import org.w3c.dom.Node;

public class Main {
    // return the name of this element
    public static String getName(Node node) {
        return node.getNodeName();
    } // getLocalName(Element):  String
}