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

net.sourceforge.pmd.lang.html.ast.ASTHtmlCDataNode 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.CDataNode;

public final class ASTHtmlCDataNode extends AbstractHtmlNode {

    ASTHtmlCDataNode(CDataNode node) {
        super(node);
    }

    public String getText() {
        return node.text();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy