Package com.google.gwt.user.server.rpc.RPCTypeCheckCollectionsTest

Examples of com.google.gwt.user.server.rpc.RPCTypeCheckCollectionsTest.TestHashSet


   * @return A LinkedHashSet that cannot be used but requires computation of an
   *         exponential number of hash codes.
   */
  @SuppressWarnings({"rawtypes", "unchecked"})
  public static TestHashSet generateTestLinkedHashSet() {
    TestHashSet result = new TestHashSet();
    HashSet entry1 = new HashSet();
    HashSet entry2 = new HashSet();
    entry1.add(12345);
    entry2.add(67890);
    result.add(entry1);
    result.add(entry2);

    return result;
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.user.server.rpc.RPCTypeCheckCollectionsTest.TestHashSet

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.