Ignore:
Timestamp:
2012-03-29T22:37:42+02:00 (12 years ago)
Author:
xeen
Message:

automatically add file extensions added by plugins to the "All Formats" importer.

If you have the PBF plugin installed it should now be possible to open .osm.pbf
files without selecting the PBF importer first.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java

    r4886 r5131  
    8989                    }
    9090                }
    91                 );
     91        );
     92    }
     93
     94    /**
     95     * Updates the {@see AllFormatsImporter} that is contained in the importers list. If
     96     * you do not use the importers variable directly, you don’t need to call this.
     97     *
     98     *  Updating the AllFormatsImporter is required when plugins add new importers that
     99     *  support new file extensions. The old AllFormatsImporter doesn’t include the new
     100     *  extensions and thus will not display these files.
     101     */
     102    public static void updateAllFormatsImporter() {
     103        for(int i=0; i < importers.size(); i++) {
     104            if(importers.get(i) instanceof AllFormatsImporter) {
     105                importers.set(i, new AllFormatsImporter());
     106            }
     107        }
    92108    }
    93109
     
    100116     */
    101117    public static List<ExtensionFileFilter> getImportExtensionFileFilters() {
     118        updateAllFormatsImporter();
    102119        LinkedList<ExtensionFileFilter> filters = new LinkedList<ExtensionFileFilter>();
    103120        for (FileImporter importer : importers) {
     
    199216            if (name.endsWith("."+ext))
    200217                return true;
    201                 return false;
     218        return false;
    202219    }
    203220
     
    210227    @Override public String getDescription() {
    211228        return description;
     229    }
     230
     231    public String getExtensions() {
     232        return extensions;
    212233    }
    213234
Note: See TracChangeset for help on using the changeset viewer.