Package de.sub.goobi.helper

Examples of de.sub.goobi.helper.Helper


  /**
   * Allgemeiner Konstruktor ()
   */
  public ImportZentralblatt() {
    this.help = new Helper();
  }
View Full Code Here


 
  @SuppressWarnings("unchecked")
  private void initializePossibleDigitalCollections() {
    this.possibleDigitalCollection = new ArrayList<String>();
    ArrayList<String> defaultCollections = new ArrayList<String>();
    String filename = new Helper().getGoobiConfigDirectory() + "goobi_digitalCollections.xml";
    if (!(new File(filename).exists())) {
      Helper.setFehlerMeldung("File not found: ", filename);
      return;
    }
    this.digitalCollections = new ArrayList<String>();
View Full Code Here

   */
  public String FilterAlleStart() {
    try {
      this.myFilteredDataSource = new UserDefinedStepFilter(true);

      this.myFilteredDataSource.getObservable().addObserver(new Helper().createObserver());
      ((UserDefinedStepFilter) this.myFilteredDataSource).setFilterModes(this.nurOffeneSchritte, this.nurEigeneSchritte);
      this.myFilteredDataSource.setFilter(this.filter);

      Criteria crit = this.myFilteredDataSource.getCriteria();
      if (!this.showAutomaticTasks) {
View Full Code Here

      if (tempProz != null && tempProz.getId() != null)
        Helper.getHibernateSession().refresh(tempProz);

      return tempProz;
    } catch (NumberFormatException e) {
      new Helper();
      throw new GoobiException(5, "******** wrapped NumberFormatException ********: " + e.getMessage() + "\n" + Helper.getStacktraceAsString(e));
    } catch (DAOException e) {
      new Helper();
      throw new GoobiException(1400, "******** wrapped DAOException ********: " + e.getMessage() + "\n" + Helper.getStacktraceAsString(e));
    }
  }
View Full Code Here

      // UserDefinedFilter
   
      this.myFilteredDataSource = new UserDefinedFilter(this.filter);
   
      // set observable to replace helper.setMessage
      this.myFilteredDataSource.getObservable().addObserver(new Helper().createObserver());

      // // calling the criteria as the result of the filter
      Criteria crit = this.myFilteredDataSource.getCriteria();
     
      // first manipulation of the created criteria
View Full Code Here

public class ConfigOpac {
   private XMLConfiguration config;
   private static String configPfad;

   public ConfigOpac() throws IOException {
     configPfad = new Helper().getGoobiConfigDirectory() + "goobi_opac.xml";

      if (!(new File(configPfad)).exists()) {
    throw new IOException("File not found: " + configPfad);
  }
      try {
View Full Code Here

TOP

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

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.