net.sourceforge.pmd.lang.jsp.ast.ASTJspExpressionInAttribute Maven / Gradle / Ivy
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.jsp.ast;
public final class ASTJspExpressionInAttribute extends AbstractExpression {
ASTJspExpressionInAttribute(int id) {
super(id);
}
@Override
protected R acceptVisitor(JspVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
}