Package org.data2semantics.platform.bean

Examples of org.data2semantics.platform.bean.ModuleBean


      InputBean second = new InputBean("second", 1500);
      List<InputBean> inputs = new ArrayList<InputBean>();
      inputs.add(first);
      inputs.add(second);
     
      ModuleBean module1 = new ModuleBean("org.data2semantics.modules.Adder", "Adder1", inputs);
      ModuleBean module2 = new ModuleBean("org.data2semantics.modules.Adder", "Adder2", inputs);
         
      List<ModuleBean> modules = new ArrayList<ModuleBean>();
      modules.add(module1);
      modules.add(module2);
     
View Full Code Here

TOP

Related Classes of org.data2semantics.platform.bean.ModuleBean

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.