Package org.pdfsam.guiclient.commons.business.loaders.callable

Examples of org.pdfsam.guiclient.commons.business.loaders.callable.AddPdfDocument


   * @param pageSelection
   *            page selection
   */
  public void addFile(File file, String password, String pageSelection) {
    if (file != null) {
      executor.execute(new AddPdfDocument(file, panel, password, pageSelection), hook);
    }
  }
View Full Code Here


   */

  public synchronized void addFiles(File[] files) {
    if (files != null) {
      for (int i = 0; i < files.length; i++) {
        executor.execute(new AddPdfDocument(files[i], panel), hook);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.pdfsam.guiclient.commons.business.loaders.callable.AddPdfDocument

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.