Package omschaub.azcvsupdater.utilities.download

Examples of omschaub.azcvsupdater.utilities.download.PluginCacheGet


            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();
       
View Full Code Here

TOP

Related Classes of omschaub.azcvsupdater.utilities.download.PluginCacheGet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.