Clover Coverage Report - PMD-3.8
Coverage timestamp: Sat May 5 2007 15:33:30 EST
6   48   1   1
0   22   1   6
6     1  
1    
 
  ASTDeclaration       Line # 5 6 1 33.3% 0.33333334
 
  (1)
 
1    /* Generated By:JJTree: Do not edit this line. ASTDeclaration.java */
2   
3    package net.sourceforge.pmd.jsp.ast;
4   
 
5    public class ASTDeclaration extends SimpleNode {
6   
7    /* BEGIN CUSTOM CODE */
8    private String name;
9   
10    /**
11    * @return Returns the name.
12    */
 
13  0 toggle public String getName() {
14  0 return name;
15    }
16   
17    /**
18    * @param name The name to set.
19    */
 
20  1 toggle public void setName(String name) {
21  1 this.name = name;
22    }
23   
24    /* (non-Javadoc)
25    * @see com.applicationengineers.pmd4jsp.ast.SimpleNode#toString(java.lang.String)
26    */
 
27  0 toggle public String toString(String prefix) {
28  0 return super.toString(prefix) + " name=[" + name + "] ";
29    }
30    /* END CUSTOM CODE */
31   
32   
 
33  0 toggle public ASTDeclaration(int id) {
34  0 super(id);
35    }
36   
 
37  1 toggle public ASTDeclaration(JspParser p, int id) {
38  1 super(p, id);
39    }
40   
41   
42    /**
43    * Accept the visitor. *
44    */
 
45  0 toggle public Object jjtAccept(JspParserVisitor visitor, Object data) {
46  0 return visitor.visit(this, data);
47    }
48    }