/** * BSD-style license; for more info see http://pmd.sourceforge.net/license.html */ package net.sourceforge.pmd.lang.apex.ast; import apex.jorje.semantic.ast.statement.FieldDeclaration; public class ASTFieldDeclaration extends AbstractApexNode<FieldDeclaration> { public ASTFieldDeclaration(FieldDeclaration fieldDeclaration) { super(fieldDeclaration); } public Object jjtAccept(ApexParserVisitor visitor, Object data) { return visitor.visit(this, data); } }