Coverage Report - us.daveread.utility.formatcheck.FormatCheck
 
Classes in this File Line Coverage Branch Coverage Complexity
FormatCheck
0%
0/5
N/A
1
 
 1  
 package us.daveread.utility.formatcheck;
 2  
 
 3  
 import us.daveread.utility.formatcheck.gui.FormatCheckFrame;
 4  
 
 5  
 /**
 6  
  * <p>Title: FormatCheck
 7  
  * <p>Description: Verify the format of flat files
 8  
  * <p>Copyright: Copyright (c) 2005
 9  
  * <p>This program is free software; you can redistribute it and/or modify
 10  
  * it under the terms of the GNU General Public License as published by
 11  
  * the Free Software Foundation; either version 2 of the License, or
 12  
  * (at your option) any later version.
 13  
  * <p>This program is distributed in the hope that it will be useful,
 14  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 15  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 16  
  * GNU General Public License for more details.
 17  
  * <p>You should have received a copy of the GNU General Public License
 18  
  * along with this program; if not, write to the Free Software
 19  
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 20  
  * </p>
 21  
  *
 22  
  * @author David Read
 23  
  * @version $Id: FormatCheck.java,v 1.1.1.1 2006/05/22 02:14:09 daveread Exp $
 24  
  */
 25  
 public class FormatCheck {
 26  
 
 27  
   /**
 28  
    * Creates the GUI
 29  
    */
 30  0
   public FormatCheck() {
 31  0
     new FormatCheckFrame();
 32  0
   }
 33  
 
 34  
   /**
 35  
    * Creates an instance of the FormatCheck
 36  
    *
 37  
    * @param args String[] Not used -- though may be someday a batch version of
 38  
    * this would permit args to control that behavior?
 39  
    */
 40  
   public static void main(String args[]) {
 41  0
     new FormatCheck();
 42  0
   }
 43  
 
 44  
 }