public void run()
{
String version_plugin = AZCVSUpdaterVersionUtils.readAZCVSUPversion(View.getPluginInterface());
String sourceDir = View.getPluginInterface().getPluginDirectoryName() + System.getProperty("file.separator");
PluginCacheGet plugincache_get = new PluginCacheGet();
plugincache_get.setURL("http://prdownloads.sourceforge.net/azcvsupdater/azcvsupdater_" + version_plugin + ".jar?downloads");
plugincache_get.setDir(sourceDir);
plugincache_get.setFileName("plugin.cache");
plugincache_get.initialize();
plugincache_get.start();
}
};
downloadThread.setDaemon(true);
downloadThread.start();