Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 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  831 public void initializeWith(ASTCompilationUnit node) {
 10  831 ScopeAndDeclarationFinder sc = new ScopeAndDeclarationFinder();
 11  831 node.jjtAccept(sc, null);
 12  831 OccurrenceFinder of = new OccurrenceFinder();
 13  831 node.jjtAccept(of, null);
 14    }
 15    }