@SuppressWarnings("deprecation")
public Iterator create(URL url, ArchiveBrowser.Filter filter)
{
try
{
VirtualFileURLConnection conn = (VirtualFileURLConnection)url.openConnection();
return new VfsArchiveBrowser(filter, conn.getContent());
}
catch (IOException e)
{
throw new RuntimeException("Unable to browse URL: " + url, e);
}