Package eu.planets_project.tb.gui.backing.exp

Examples of eu.planets_project.tb.gui.backing.exp.DigitalObjectBean


     * @return
     */
    public List<DigitalObjectBean> getExperimentInputDataValues(){
      List<DigitalObjectBean> ret = new ArrayList<DigitalObjectBean>();
      for(String val : this.getExperimentInputData().values()){
        DigitalObjectBean digoBean = new DigitalObjectBean(val);
        ret.add(digoBean);
      }
      return ret;
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.gui.backing.exp.DigitalObjectBean

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.