Clover coverage report - Common - 1.0.0
Coverage timestamp: sam. déc. 27 2003 15:13:46 CET
file stats: LOC: 30   Methods: 1
NCLOC: 9   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WorkspaceFileTools.java - - 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.util.state;
 8   
 
 9   
 import java.util.ResourceBundle;
 10   
 
 11   
 import org.ejtools.util.FileTools;
 12   
 
 13   
 /**
 14   
  * Description of the Class
 15   
  *
 16   
  * @author    Laurent Etiemble
 17   
  * @version   $Revision: 1.2 $
 18   
  */
 19   
 public class WorkspaceFileTools extends FileTools
 20   
 {
 21   
    /** Description of the Field */
 22   
    private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.util.Resources");
 23   
    /** Description of the Field */
 24   
    public final static SimpleFileFilter WORKSPACE_FILE_FILTER = new FileTools.SimpleFileFilter(".xml", resources.getString("workspace.file.dialog.extension.description"));
 25   
 
 26   
 
 27   
    /** Constructor for the FileUtil object */
 28  0
    protected WorkspaceFileTools() { }
 29   
 }
 30