Clover coverage report - AdWT - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:10 CET
file stats: LOC: 34   Methods: 1
NCLOC: 13   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AwtToolkit.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * EJTools, the Enterprise Java Tools
 3   
  *
 4   
  * Distributable under LGPL license.
 5   
  * See terms of license at www.gnu.org.
 6   
  */
 7   
 package org.ejtools.adwt;
 8   
 
 9   
 import java.awt.Color;
 10   
 import java.awt.Font;
 11   
 
 12   
 
 13   
 /**
 14   
  * @author    Laurent Etiemble
 15   
  * @version   $Revision: 1.5 $
 16   
  */
 17   
 public class AwtToolkit
 18   
 {
 19   
    /** Description of the Field */
 20   
    public static Color DARK_BLUE = new Color(0, 0, 144);
 21   
    /** Description of the Field */
 22   
    public static Color DARK_RED = new Color(144, 0, 0);
 23   
 
 24   
    /** Description of the Field */
 25   
    public static Font FONT = new Font("SansSerif", Font.BOLD, 10);
 26   
 
 27   
 
 28   
    /** Constructor for AwtToolkit. */
 29  0
    private AwtToolkit()
 30   
    {
 31  0
       super();
 32   
    }
 33   
 }
 34