}
AbstractDownload d = new Download(new URL(url));
d.addPropertyChangeListener(this);
downloader.setDownload(d);
downloader.download();
d.removePropertyChangeListener(this);
}
}
public static void main(String... args) throws MalformedURLException {
DownloaderTest test = new DownloaderTest();