- added *.* to file chooser
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / ImportFromFileDataSourceWizardPage.java
index 7b585050d5e55eeddbbca9a357907b1aa06c3aee..2d2415d96cc18e0e627bfef250e48c1bd33c6322 100644 (file)
@@ -67,7 +67,7 @@ public class ImportFromFileDataSourceWizardPage extends WizardPage {
         * @return a {@link eu.etaxonomy.taxeditor.io.wizard.ImportFromFileDataSourceWizardPage} object.
         */
        protected static ImportFromFileDataSourceWizardPage XML(){
-               return new ImportFromFileDataSourceWizardPage("Xml File", "Select XML file.", new String[]{"*.xml"});
+               return new ImportFromFileDataSourceWizardPage("Xml File", "Select XML file.", new String[]{"*.xml","*.*"});
        }
 
 
@@ -117,6 +117,7 @@ public class ImportFromFileDataSourceWizardPage extends WizardPage {
 
                });
 
+
                setControl(composite);
        }
 
@@ -137,4 +138,6 @@ public class ImportFromFileDataSourceWizardPage extends WizardPage {
        public URI getUri() {
                return getFile().toURI();
        }
+
+
 }