Examples of GoobiScript


Examples of de.sub.goobi.helper.GoobiScript

          /* Vorgangstitel */
          this.myProzess.setTitel(this.myNewProcessTitle);

          if (!this.myProzess.isIstTemplate()) {
            /* Tiffwriter-Datei löschen */
            GoobiScript gs = new GoobiScript();
            ArrayList<Prozess> pro = new ArrayList<Prozess>();
            pro.add(this.myProzess);
            gs.deleteTiffHeaderFile(pro);
            gs.updateImagePath(pro);
          }
        }

      }

View Full Code Here

Examples of de.sub.goobi.helper.GoobiScript

  /**
   * Starte GoobiScript über alle Treffer
   */
  @SuppressWarnings("unchecked")
  public void GoobiScriptHits() {
    GoobiScript gs = new GoobiScript();
    gs.execute(this.page.getCompleteList(), this.goobiScript);
  }
View Full Code Here

Examples of de.sub.goobi.helper.GoobiScript

  /**
   * Starte GoobiScript über alle Treffer der Seite
   */
  @SuppressWarnings("unchecked")
  public void GoobiScriptPage() {
    GoobiScript gs = new GoobiScript();
    gs.execute(this.page.getListReload(), this.goobiScript);
  }
View Full Code Here

Examples of de.sub.goobi.helper.GoobiScript

    for (Prozess p : (List<Prozess>) this.page.getListReload()) {
      if (p.isSelected()) {
        auswahl.add(p);
      }
    }
    GoobiScript gs = new GoobiScript();
    gs.execute(auswahl, this.goobiScript);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.