Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 15   Methods: 1
NCLOC: 10   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SymbolFacade.java - 100% 100% 100%
coverage
 1    /**
 2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 3    */
 4    package net.sourceforge.pmd.symboltable;
 5   
 6    import net.sourceforge.pmd.ast.ASTCompilationUnit;
 7   
 8    public class SymbolFacade {
 9  1315 public void initializeWith(ASTCompilationUnit node) {
 10  1315 ScopeAndDeclarationFinder sc = new ScopeAndDeclarationFinder();
 11  1315 node.jjtAccept(sc, null);
 12  1315 OccurrenceFinder of = new OccurrenceFinder();
 13  1315 node.jjtAccept(of, null);
 14    }
 15    }