net.sourceforge.pmd.lang.apex.ast.ASTValueWhenBlock Maven / Gradle / Ivy
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.apex.ast;
import com.google.summit.ast.statement.SwitchStatement;
public final class ASTValueWhenBlock extends AbstractApexNode.Single {
ASTValueWhenBlock(SwitchStatement.WhenValue whenValue) {
super(whenValue);
}
@Override
protected R acceptApexVisitor(ApexVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
}