Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
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  1113 public void initializeWith(ASTCompilationUnit node) {
 10  1113 ScopeAndDeclarationFinder sc = new ScopeAndDeclarationFinder();
 11  1113 node.jjtAccept(sc, null);
 12  1113 OccurrenceFinder of = new OccurrenceFinder();
 13  1113 node.jjtAccept(of, null);
 14    }
 15    }