Package com.mucommander.job

Examples of com.mucommander.job.FileJob


   * @param rowIndex an index of a job
   * @return a progress information or null if job doesn't exists
   */
  public JobProgress getJobProgres(int rowIndex) {
    if (rowIndex < jobs.size()) {
      FileJob job = jobs.get(rowIndex);
      return job.getJobProgress();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of com.mucommander.job.FileJob

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.