Package play_downloader

Examples of play_downloader.RunAfterDownloadThread


        }
    }

    private void startRunAfterDownload(int curIndex){
        if (prefs.getBoolean(S.PREF_RUN_AFTER_DOWNLOAD_CHEKED, false)) {//TODO: check this out
            RunAfterDownloadThread radThread = new RunAfterDownloadThread(dObjects, jTable1, curIndex);
            radThread.start();
            dObjects[curIndex].setStatus(DownloadableObjects.STATUS_EXT_APP);
            jTable1.setValueAt(dObjects[curIndex].getStatus(), curIndex, 3); //update the table
        }
    }
View Full Code Here

TOP

Related Classes of play_downloader.RunAfterDownloadThread

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.