Package org.jboss.cache.aop.test

Examples of org.jboss.cache.aop.test.Address


      for (int i = 0; i < TIMES; i++) {
        Student unk = new Student();
        unk.setName(""+ i );

        Address address = new Address();
        address.setStreet(r.nextInt() + "Oak Drive");
        address.setCity("Pleasantville, CA" + r.nextInt());
        address.setZip(r.nextInt(99999));
        unk.setAddress(address);

        hash.put(unk.getName(),unk);
      }
      System.out.println("Finished with init...");
View Full Code Here

TOP

Related Classes of org.jboss.cache.aop.test.Address

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.