Package org.spoutcraft.launcher.util

Examples of org.spoutcraft.launcher.util.DownloadListener


  public void setWaiting(boolean waiting) {
    updateThread.setWaiting(waiting);
  }

  public void onSpoutcraftBuildChange() {
    DownloadListener old = updateThread.getDownloadListener();
    updateThread.setDownloadListener(null);
    updateThread.interrupt();
    MinecraftLauncher.resetClassLoader();
    updateThread = new UpdateThread(updateThread);
    updateThread.setDownloadListener(old);
View Full Code Here


  private class DownloadListenerWrapper implements DownloadListener {
    private final AtomicReference<DownloadListener> wrapped = new AtomicReference<DownloadListener>(null);
    public void stateChanged(String fileName, float progress) {
      fileName = (new File(fileName)).getName();
      DownloadListener listener = wrapped.get();
      if (listener != null) {
        listener.stateChanged(fileName, progress);
      }
    }
View Full Code Here

TOP

Related Classes of org.spoutcraft.launcher.util.DownloadListener

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.