1
2
3
4
5
6
7 package net.sourceforge.pmd.lang.plsql.ast;
8
9 import net.sourceforge.pmd.lang.symboltable.NameDeclaration;
10
11 public class ASTName extends net.sourceforge.pmd.lang.plsql.ast.AbstractPLSQLNode{
12 public ASTName(int id) {
13 super(id);
14 }
15
16 public ASTName(PLSQLParser p, int id) {
17 super(p, id);
18 }
19
20
21
22 public Object jjtAccept(PLSQLParserVisitor visitor, Object data) {
23 return visitor.visit(this, data);
24 }
25
26 private NameDeclaration nd;
27
28 public void setNameDeclaration(NameDeclaration nd) {
29 this.nd = nd;
30 }
31
32 public NameDeclaration getNameDeclaration() {
33 return this.nd;
34 }
35 }
36