1 |
| |
2 |
| |
3 |
| package net.sourceforge.pmd.jsp.ast; |
4 |
| |
5 |
| public class ASTJspDirective extends SimpleNode { |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| private String name; |
13 |
| |
14 |
| |
15 |
| |
16 |
| |
17 |
1
| public String getName() {
|
18 |
1
| return name;
|
19 |
| } |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
11
| public void setName(String name) {
|
25 |
11
| this.name = name;
|
26 |
| } |
27 |
| |
28 |
| |
29 |
| |
30 |
| |
31 |
0
| public String toString(String prefix) {
|
32 |
0
| return super.toString(prefix) + " name=[" + name + "] ";
|
33 |
| } |
34 |
| |
35 |
| |
36 |
0
| public ASTJspDirective(int id) {
|
37 |
0
| super(id);
|
38 |
| } |
39 |
| |
40 |
11
| public ASTJspDirective(JspParser p, int id) {
|
41 |
11
| super(p, id);
|
42 |
| } |
43 |
| |
44 |
| |
45 |
| |
46 |
| |
47 |
| |
48 |
10
| public Object jjtAccept(JspParserVisitor visitor, Object data) {
|
49 |
10
| return visitor.visit(this, data);
|
50 |
| } |
51 |
| } |