Package com.test.jsonwebservice.rpc

Examples of com.test.jsonwebservice.rpc.LargeList


    for (int i = 0; i < 1000000; i++) {
      bigObject.add(getBigObject(true));
    }
  }
  public LargeList test1SizeInLargeListOut(int integer) {
    LargeList largeList = new LargeList();
    largeList.getBigObject().addAll(bigObject.subList(0, integer));
    return largeList;
  }
View Full Code Here

TOP

Related Classes of com.test.jsonwebservice.rpc.LargeList

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.