Clover coverage report - Graph - 1.0.0
Coverage timestamp: ven. déc. 26 2003 02:14:20 CET
file stats: LOC: 41   Methods: 1
NCLOC: 16   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ExportAsTextAction.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.graph.action;
 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.3 $
 19   
  * @todo      Javadoc to complete
 20   
  */
 21   
 public class ExportAsTextAction extends CommandAction
 22   
 {
 23   
    /** Description of the Field */
 24   
    private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.graph.GraphService");
 25   
 
 26   
 
 27   
    /**
 28   
     * Constructor for the NewAction object
 29   
     *
 30   
     * @param command  Description of Parameter
 31   
     */
 32  0
    public ExportAsTextAction(Command command)
 33   
    {
 34  0
       super(command, resources, "action.tools.export.as.text");
 35  0
       this.setMenu("action.tools");
 36  0
       this.setToolBar(true);
 37  0
       this.setSmallIcon("/toolbarButtonGraphics/general/Export16.gif");
 38  0
       this.setIcon("/toolbarButtonGraphics/general/Export24.gif");
 39   
    }
 40   
 }
 41