Import of Ekit 0.9h
[old-projects.git] / ekit / com / hexidec / ekit / component / ImageFileChooser.java
index ad1618c..82d1694 100644 (file)
@@ -1,54 +1,54 @@
-/*\r
-GNU Lesser General Public License\r
-\r
-ImageFileChooser\r
-Copyright (C) 2000-2002  Frits Jalvingh & Howard Kistler\r
-\r
-This library is free software; you can redistribute it and/or\r
-modify it under the terms of the GNU Lesser General Public\r
-License as published by the Free Software Foundation; either\r
-version 2.1 of the License, or (at your option) any later version.\r
-\r
-This library is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-Lesser General Public License for more details.\r
-\r
-You should have received a copy of the GNU Lesser General Public\r
-License along with this library; if not, write to the Free Software\r
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
-*/\r
-\r
-package com.hexidec.ekit.component;\r
-\r
-import java.io.File;\r
-import javax.swing.JFileChooser;\r
-\r
-/** Class for providing a chooser that lets the user select an image to insert\r
-  */\r
-public class ImageFileChooser extends JFileChooser\r
-{\r
-       /** Constructor that takes a default directory to start in, specified as a File\r
-         * @param File with the default path\r
-         */\r
-       public ImageFileChooser(File fileCurrentDirectory)\r
-       {\r
-               this.setCurrentDirectory(fileCurrentDirectory);\r
-               this.setAccessory(new ImageFileChooserPreview(this));\r
-   }\r
-\r
-       /** Constructor that takes a default directory to start in, specified as a String\r
-         * @param String current directory path.\r
-         */\r
-       public ImageFileChooser(String strCurrentPath)\r
-       {\r
-               this(new File(strCurrentPath));\r
-       }\r
-\r
-       /** Empty constructor\r
-         */\r
-       public ImageFileChooser()\r
-       {\r
-               this((File)null);\r
-       }\r
-}\r
+/*
+GNU Lesser General Public License
+
+ImageFileChooser
+Copyright (C) 2000  Frits Jalvingh & Howard Kistler
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Lesser General Public
+License as published by the Free Software Foundation; either
+version 2.1 of the License, or (at your option) any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this library; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+*/
+
+package com.hexidec.ekit.component;
+
+import java.io.File;
+import javax.swing.JFileChooser;
+
+/** Class for providing a chooser that lets the user select an image to insert
+  */
+public class ImageFileChooser extends JFileChooser
+{
+       /** Constructor that takes a default directory to start in, specified as a File
+         * @param File with the default path
+         */
+       public ImageFileChooser(File fileCurrentDirectory)
+       {
+               this.setCurrentDirectory(fileCurrentDirectory);
+               this.setAccessory(new ImageFileChooserPreview(this));
+   }
+
+       /** Constructor that takes a default directory to start in, specified as a String
+         * @param String current directory path.
+         */
+       public ImageFileChooser(String strCurrentPath)
+       {
+               this(new File(strCurrentPath));
+       }
+
+       /** Empty constructor
+         */
+       public ImageFileChooser()
+       {
+               this((File)null);
+       }
+}