All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.xml.XmlParser Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.xml;

import net.sourceforge.pmd.lang.ast.ParseException;
import net.sourceforge.pmd.lang.ast.Parser;
import net.sourceforge.pmd.lang.xml.ast.internal.XmlParserImpl;
import net.sourceforge.pmd.lang.xml.ast.internal.XmlParserImpl.RootXmlNode;

/**
 * Adapter for the XmlParser.
 */
class XmlParser implements Parser {

    @Override
    public RootXmlNode parse(ParserTask task) throws ParseException {
        return new XmlParserImpl().parse(task);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy