| | |
| | | |
| | | public static final String RB_AUDIOEXTS = "audioexts"; |
| | | public static final String RB_VIDEOEXTS = "videoexts"; |
| | | public static final String RB_FOTOEXTS = "imageexts"; |
| | | |
| | | /* Der Logger fuer diesen ListFileHandler */ |
| | | private static final Logger logger = Logger.getLogger(ListFileHandler.class.getName()); |
| | |
| | | FileStorage fs = new FileStorage(conf); |
| | | initMap(fs, getResString(RB_AUDIOEXTS), StorageFile.TYP_AUDIO); |
| | | initMap(fs, getResString(RB_VIDEOEXTS), StorageFile.TYP_VIDEO); |
| | | initMap(fs, getResString(RB_FOTOEXTS), StorageFile.TYP_FOTO); |
| | | } |
| | | |
| | | private void initMap(Storage s, String key, String typ) { |