Package de.sub.goobi.helper

Examples of de.sub.goobi.helper.Batch


   
    String msg1 = Helper.getTranslation("batch");
    String msg2 = Helper.getTranslation("prozesse");
    if (id != null) {
      String text = msg1 + " " + id + " (" + crit.uniqueResult() + " " + msg2 + ")";
      return new Batch(id, text);
    } else {
      String text = Helper.getTranslation("withoutBatch") + " (" + crit.uniqueResult() + " " + msg2 + ")";
      return new Batch(null, text);
    }
  }
View Full Code Here

TOP

Related Classes of de.sub.goobi.helper.Batch

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.