KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > util > state > WorkspaceFileTools


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 JavaDoc;
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 JavaDoc 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    protected WorkspaceFileTools() { }
29 }
30
Popular Tags