Package de.sub.goobi.helper

Examples of de.sub.goobi.helper.GoobiScript.execute()


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

  /**
   * Starte GoobiScript über alle Treffer der Seite
   */
 
View Full Code Here


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

  /**
   * Starte GoobiScript über alle selectierten Treffer
   */
 
View Full Code Here

      if (p.isSelected()) {
        auswahl.add(p);
      }
    }
    GoobiScript gs = new GoobiScript();
    gs.execute(auswahl, this.goobiScript);
  }

  /*
   * Statistische Auswertung
   */
 
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.