Examples of IExperimentSuiteReader


Examples of org.jamesii.core.data.experimentsuite.IExperimentSuiteReader

   *          parameters for the reader
   */
  public void openExperimentSuite(ExperimentSuiteReaderFactory factory,
      ParameterBlock param) {
    try {
      IExperimentSuiteReader reader = factory.create(param, SimSystem.getRegistry().createContext());

      ExperimentSuite<BaseExperiment> expSuite =
          reader.readExperimentSuite(BaseExperiment.class, param);
      if (expSuite == null) {
        SimSystem.report(Level.SEVERE, null,
            "Error opening experiment suite located at '"
                + getExpLocation(param) + "' with reader + '"
                + reader.getClass().toString() + "'", null);
        return;
      }
      SimSystem.report(Level.INFO, null, "Opened experiment suite from '"
          + getExpLocation(param) + "'", null);
      // TODO: Integrate experiment suites
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.