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

net.sourceforge.pmd.lang.html.ast.ASTHtmlXmlDeclaration Maven / Gradle / Ivy

The newest version!
/*
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */


package net.sourceforge.pmd.lang.html.ast;

import org.jsoup.nodes.XmlDeclaration;

public final class ASTHtmlXmlDeclaration extends AbstractHtmlNode {

    ASTHtmlXmlDeclaration(XmlDeclaration node) {
        super(node);
    }

    @Override
    protected  R acceptHtmlVisitor(HtmlVisitor visitor, P data) {
        return visitor.visit(this, data);
    }

    public String getName() {
        return node.name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy