Examples of SendMeshInterfaceObjectsResponse


Examples of edu.indiana.extreme.wsdl.benchmark1.SendMeshInterfaceObjectsResponse

    }

    public List<MeshInterfaceObject> sendMeshInterfaceObjects(int size) throws java.lang.Exception {
        SendMeshInterfaceObjectsRequest request = new SendMeshInterfaceObjectsRequest();
        request.setSize(size);
        SendMeshInterfaceObjectsResponse response = port.sendMeshInterfaceObjects(request);       
        return response.getSendMeshInterfaceObjectsReturn().getItem();
    }
View Full Code Here

Examples of edu.indiana.extreme.wsdl.benchmark1.SendMeshInterfaceObjectsResponse

    public edu.indiana.extreme.wsdl.benchmark1.SendMeshInterfaceObjectsResponse sendMeshInterfaceObjects(
        edu.indiana.extreme.wsdl.benchmark1.SendMeshInterfaceObjectsRequest size
    )
    {
        LOG.info("Executing operation sendMeshInterfaceObjects");
        SendMeshInterfaceObjectsResponse ret = new SendMeshInterfaceObjectsResponse();
        ArrayOfMeshInterfaceObject value = new ArrayOfMeshInterfaceObject();
        List<MeshInterfaceObject> item = value.getItem();
        for(int i = 0 ; i < size.getSize() ; i++) {
          MeshInterfaceObject object = new MeshInterfaceObject();
          object.setX(i);
            object.setY(i);
            object.setValue(Math.sqrt(i));
            item.add(object);
        }
        ret.setSendMeshInterfaceObjectsReturn(value);
        return ret;
    }
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.