net.sourceforge.pmd.lang.java.ast.ASTSwitchLabeledBlock Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.java.ast;
import net.sourceforge.pmd.annotation.InternalApi;
public class ASTSwitchLabeledBlock extends AbstractJavaNode implements ASTSwitchLabeledRule {
@Deprecated
@InternalApi
ASTSwitchLabeledBlock(int id) {
super(id);
}
@Deprecated
@InternalApi
ASTSwitchLabeledBlock(JavaParser p, int id) {
super(p, id);
}
@Override
public Object jjtAccept(JavaParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
}