All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clickntap.platform.FThread Maven / Gradle / Ivy

The newest version!
package com.clickntap.platform;

import com.clickntap.tool.f.F;

public class FThread extends Thread {

  private F f;

  public FThread(Runnable r) {
    super(r);
  }

  public void init(F f) throws Exception {
    this.f = new F();
    this.f.setCrypto(f.getCrypto());
    this.f.setExtension(f.getExtension());
    this.f.setFile(f.getFile());
    this.f.setServerURL(f.getServerURL());
    this.f.init();
  }

  public F getF() {
    return f;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy