Package com.visitrend.ndvis.deprecated

Examples of com.visitrend.ndvis.deprecated.SwingWorker


   * This is pretty much already built for you, you would put your task code
   * in the doSomething method which you would override. However, you can also
   * override this method if you like.
   */
  public void go() {
    final SwingWorker worker = new SwingWorker() {
      public Object construct() {
        progress = 0;
        done = false;
        canceled = false;
        statMessage = null;
        return doSomething();
      }

      public void finished() {
        complete();
      }
    };
    worker.start();
  }
View Full Code Here

TOP

Related Classes of com.visitrend.ndvis.deprecated.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.