Examples of addExperimentInputData()


Examples of eu.planets_project.tb.gui.backing.ExperimentBean.addExperimentInputData()

      log.error("Added file reference not correct or reachable by the VM "+fileRef);
    }
     
      //1) Add the file reference to the expBean
        log.info("Adding file to Experiment Bean.");
      String position = expBean.addExperimentInputData(fileRef);
        log.info("Adding file to Experiment Bean at position "+position);
     
      //reload stage2 and displaying the added data items
        log.info("commandAddInputDataItem DONE");
        // Do a redirect, ensuring the Exp ID is carried through:
View Full Code Here

Examples of eu.planets_project.tb.gui.backing.ExperimentBean.addExperimentInputData()

        ExperimentBean expBean = (ExperimentBean)JSFUtil.getManagedObject("ExperimentBean");
        if( expBean == null ) return "failure";
        // Add each of the selected items to the experiment:
        for( URI uri : fb.getSelectedUris() ) {
              //add reference to the new experiment's backing bean
              expBean.addExperimentInputData(uri.toString());
        }
        // Clear any selection:
        fb.clearSelection();
        // Return: gotoStage2 in the browse new experiment wizard
        //return "goToStage2";
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.