public void store(File target) throws IOException {
FlatFile ff = new FlatFile(target.getAbsolutePath());
Iterator<String> adapted =
new AdaptedIterator<ResourceFileLocation,String>(iterator(),
new ResourceFileLocationAdapter());
ff.store(adapted);
}
public static ResourceFileList load(File source) throws IOException {
ResourceFileList list = new ResourceFileList();