Package jsky.util

Examples of jsky.util.SwingWorker


     * If there is a URL corresponding to the root node, read it again and
     * rebuild the tree (in case the file changed...).
     */
    private void _reload() {
        // Run in a background thread, since it can hang
        new SwingWorker() {
            public Object construct() {
                try {
                    return _rootCatDir.reload();
                } catch (Exception e) {
                    return e;
View Full Code Here


        if (selectedCatalog == _rootCatDir) {
            _reload();
            return;
        }
        // Run in a background thread, since it can hang
        new SwingWorker() {
            public Object construct() {
                try {
                    return selectedCatalog.reload();
                } catch (Exception e) {
                    return e;
View Full Code Here

TOP

Related Classes of jsky.util.SwingWorker

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.