net.sourceforge.pmd.lang.jsp.ast.ASTCompilationUnit Maven / Gradle / Ivy
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.jsp.ast;
import net.sourceforge.pmd.lang.ast.AstInfo;
import net.sourceforge.pmd.lang.ast.Parser.ParserTask;
import net.sourceforge.pmd.lang.ast.RootNode;
public final class ASTCompilationUnit extends AbstractJspNode implements RootNode {
private AstInfo astInfo;
ASTCompilationUnit(int id) {
super(id);
}
@Override
public AstInfo getAstInfo() {
return astInfo;
}
ASTCompilationUnit makeTaskInfo(ParserTask task) {
this.astInfo = new AstInfo<>(task, this);
return this;
}
@Override
protected R acceptVisitor(JspVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
}