Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
file stats: LOC: 20   Methods: 1
NCLOC: 5   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
VisitorStarter.java - - 0% 0%
coverage
 1    package net.sourceforge.pmd.sourcetypehandlers;
 2   
 3    /**
 4    * Interface for starting an implementation of the parser visitors for
 5    * the grammars.
 6    *
 7    * @author pieter_van_raemdonck - Application Engineers NV/SA - www.ae.be
 8    */
 9    public interface VisitorStarter {
 10   
 11  0 VisitorStarter dummy = new VisitorStarter() { public void start(Object rootNode) {} };
 12   
 13    /**
 14    * Start the visitor, given the root-node of the AST.
 15    *
 16    * @param rootNode The root node of the AST
 17    */
 18    void start(Object rootNode);
 19   
 20    }