Coverage Report - uk.co.javagear.JavaGear
 
Classes in this File Line Coverage Branch Coverage Complexity
JavaGear
0% 
N/A 
1
 
 1  
 /*
 2  
  * JavaGear.java
 3  
  *
 4  
  * This file is part of JavaGear.
 5  
  *
 6  
  * JavaGear is free software; you can redistribute it and/or modify
 7  
  * it under the terms of the GNU General Public License as published by
 8  
  * the Free Software Foundation; either version 2 of the License, or
 9  
  * (at your option) any later version.
 10  
  *
 11  
  * JavaGear is distributed in the hope that it will be useful,
 12  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14  
  * GNU General Public License for more details.
 15  
  *
 16  
  * You should have received a copy of the GNU General Public License
 17  
  * along with JavaGear; if not, write to the Free Software
 18  
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 19  
  */
 20  
 
 21  
 package uk.co.javagear;
 22  
 
 23  
 /**
 24  
  * JavaGear application.
 25  
  *
 26  
  * @author Copyright (C) 2002-2003 Chris White
 27  
  * @version 18th July 2003
 28  
  * @see "JavaGear Final Project Report"
 29  
  */
 30  
 public final class JavaGear {
 31  
     
 32  
     /**
 33  
      * Current version of JavaGear.
 34  
      */
 35  
     private static final String VERSION = "Beta 4a";
 36  
     
 37  
     /**
 38  
      * The author's name.
 39  
      */
 40  
     private static final String AUTHOR  = "Chris White";
 41  
     
 42  
     /**
 43  
      * Release date for this version of JavaGear.
 44  
      */
 45  
     private static final String DATE    = "20th July 2003";
 46  
     
 47  
     /**
 48  
      * This class only provides static methods.
 49  
      */
 50  0
     private JavaGear() {
 51  0
     }
 52  
     
 53  
     /**
 54  
      * Main method for the JavaGear application.
 55  
      *
 56  
      * @param args ignored.
 57  
      */
 58  
     public static void main(String[] args) {
 59  0
         System.out.println("JavaGear (" + VERSION + " - " + DATE + ")\n");
 60  0
         System.out.print("Initialising ... ");
 61  
         
 62  0
         JavaGearFrame jgf = new JavaGearFrame();
 63  
         
 64  0
         System.out.println("Done");
 65  
         
 66  0
         jgf.setVisible(true);
 67  0
     }
 68  
     
 69  
 }