Clover coverage report - AdWT - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:14:10 CET
file stats: LOC: 41   Methods: 1
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
FileHistoryActionTop.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.file;
 8   
 
 9   
 import java.util.ResourceBundle;
 10   
 
 11   
 import org.ejtools.adwt.action.Command;
 12   
 import org.ejtools.adwt.action.CommandAction;
 13   
 import org.ejtools.adwt.service.MenuBarService;
 14   
 
 15   
 /**
 16   
  * Description of the Class
 17   
  *
 18   
  * @author    Laurent Etiemble
 19   
  * @version   $Revision: 1.9 $
 20   
  * @todo      Javadoc to complete
 21   
  */
 22   
 public class FileHistoryActionTop extends CommandAction
 23   
 {
 24   
     /** Resource Bundle */
 25   
    private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
 26   
 
 27   
 
 28   
    /**
 29   
     * Constructor for the CloseAction object
 30   
     *
 31   
     * @param command  Description of Parameter
 32   
     */
 33  16
    public FileHistoryActionTop(Command command)
 34   
    {
 35  16
       super(command, resources, "action.file.history");
 36  16
       this.setMenu("action.file");
 37  16
       this.setMenuLayout(MenuBarService.SEPARATOR_BEFORE);
 38   
    }
 39   
 }
 40   
 
 41