Package org.data2semantics.platform.bean

Examples of org.data2semantics.platform.bean.InputBean


  @Test
  public void testWorkflowBean() {
     
     
      InputBean first = new InputBean("first", 1500);
      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);
View Full Code Here

TOP

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

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.