Clover coverage report - AdWT - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:10 CET
file stats: LOC: 40   Methods: 1
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AboutAction.java - 100% 100% 100%
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.action.help;
 8   
 
 9   
 import java.util.ResourceBundle;
 10   
 
 11   
 import org.ejtools.adwt.action.Command;
 12   
 import org.ejtools.adwt.action.CommandAction;
 13   
 
 14   
 /**
 15   
  * Description of the Class
 16   
  *
 17   
  * @author    Laurent Etiemble
 18   
  * @version   $Revision: 1.8 $
 19   
  * @todo      Javadoc to complete
 20   
  */
 21   
 public class AboutAction extends CommandAction
 22   
 {
 23   
     /** Resource Bundle */
 24   
    private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
 25   
 
 26   
 
 27   
    /**
 28   
     * @param command  The exit command that the action should act upon.
 29   
     */
 30  16
    public AboutAction(Command command)
 31   
    {
 32  16
       super(command, resources, "action.help.about");
 33  16
       this.setMenu("action.help");
 34  16
       this.setToolBar(true);
 35  16
       this.setSmallIcon("/toolbarButtonGraphics/general/About16.gif");
 36  16
       this.setIcon("/toolbarButtonGraphics/general/About24.gif");
 37   
    }
 38   
 }
 39   
 
 40