Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 21   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JspSymbolFacade.java - 100% 100% 100%
coverage
 1    package net.sourceforge.pmd.symboltable;
 2   
 3    import net.sourceforge.pmd.jsp.ast.ASTCompilationUnit;
 4    import net.sourceforge.pmd.sourcetypehandlers.VisitorStarter;
 5   
 6    /**
 7    * Symbol Facade for JSP.
 8    *
 9    * @author pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be
 10    */
 11    public class JspSymbolFacade implements VisitorStarter {
 12   
 13    /**
 14    * Set Scope for JSP AST.
 15    */
 16  24 public void start(Object rootNode) {
 17  24 ASTCompilationUnit compilationUnit = (ASTCompilationUnit) rootNode;
 18  24 new JspScopeAndDeclarationFinder().setJspScope(compilationUnit);
 19    }
 20   
 21    }