Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;

public class Main {
    public static void end(final ContentHandler handler, final String elementName) throws SAXException {
        handler.endElement(null, elementName, elementName);
    }
}