1
2
3
4
5
6
7 package net.sourceforge.pmd.lang.plsql.ast;
8
9 import net.sourceforge.pmd.lang.dfa.DFAGraphMethod;
10
11 public class ASTTriggerTimingPointSection extends AbstractPLSQLNode implements ExecutableCode, DFAGraphMethod {
12 public ASTTriggerTimingPointSection(int id) {
13 super(id);
14 }
15
16 public ASTTriggerTimingPointSection(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
27
28
29
30 public String getMethodName() {
31 return getImage() ;
32 }
33
34 @Override
35 public String getName() {
36 return getMethodName();
37 }
38 }
39