Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 17   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Viewer.java - 0% 0% 0%
coverage
 1    package net.sourceforge.pmd.util.viewer;
 2   
 3    import net.sourceforge.pmd.jaxen.MatchesFunction;
 4    import net.sourceforge.pmd.util.viewer.gui.MainFrame;
 5   
 6    /**
 7    * viewer's starter
 8    *
 9    * @author Boris Gruschko ( boris at gruschko.org )
 10    * @version $Id: Viewer.java,v 1.10 2006/02/10 14:26:31 tomcopeland Exp $
 11    */
 12    public class Viewer {
 13  0 public static void main(String[] args) {
 14  0 MatchesFunction.registerSelfInSimpleContext();
 15  0 new MainFrame();
 16    }
 17    }