net.sourceforge.pmd.lang.jsp.ast.ASTJspDirectiveAttribute 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 ASTJspDirectiveAttribute extends AbstractJspNode {
private String name;
private String value;
ASTJspDirectiveAttribute(int id) {
super(id);
}
public String getName() {
return name;
}
void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
void setValue(String value) {
this.value = value;
}
@Override
protected R acceptVisitor(JspVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
}