Clover coverage report - PMD - 3.3
Coverage timestamp: Thu Sep 15 2005 17:59:57 EDT
file stats: LOC: 20   Methods: 1
NCLOC: 7   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.util.viewer.gui.MainFrame;
 4   
 5    /**
 6    * viewer's starter
 7    *
 8    * @author Boris Gruschko ( boris at gruschko.org )
 9    * @version $Id: Viewer.java,v 1.5 2005/08/23 17:17:49 tomcopeland Exp $
 10    */
 11    public class Viewer {
 12    /**
 13    * starts the viewer
 14    *
 15    * @param args arguments
 16    */
 17  0 public static void main(String[] args) {
 18  0 new MainFrame();
 19    }
 20    }