All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.assaydepot.AssayDepotFactory Maven / Gradle / Ivy

There is a newer version: 0.40
Show newest version
package com.assaydepot;

import com.assaydepot.conf.Configuration;

public class AssayDepotFactory {
	
  private Configuration conf;  
  /**
   * Creates a AssayDepotFactory with the given configuration.
   *
   * @param conf the configuration to use
   */
  public static AssayDepot getAssayDepot(Configuration conf) {
    if (conf == null) {
        throw new NullPointerException("configuration cannot be null");
    }
    return new AssayDepotTreeImpl( conf );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy