01 /**
02 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03 */
04 package net.sourceforge.pmd.lang.ecmascript.ast;
05
06 import org.mozilla.javascript.ast.ElementGet;
07
08 public class ASTElementGet extends AbstractEcmascriptNode<ElementGet> {
09 public ASTElementGet(ElementGet elementGet) {
10 super(elementGet);
11 }
12
13 /**
14 * Accept the visitor.
15 */
16 @Override
17 public Object jjtAccept(EcmascriptParserVisitor visitor, Object data) {
18 return visitor.visit(this, data);
19 }
20
21 public EcmascriptNode getTarget() {
22 return (EcmascriptNode) node.getTarget();
23 }
24
25 public EcmascriptNode getElement() {
26 return (EcmascriptNode) node.getElement();
27 }
28 }
|