Package com.bubble.serializer.objects

Examples of com.bubble.serializer.objects.IntArrayPojo


      };
    };

    AbstractSerializeTest test5 = new AbstractSerializeTest(2000, 10) {
      protected Object createTestObject() {
        return new IntArrayPojo(100);
      };
    };
   
    test1.runTest();
    test2.runTest();
View Full Code Here


public class IntArraySerializeTest extends AbstractSerializeTest {
  public IntArraySerializeTest(int loops, int runs) {
    super(loops, runs);
  }
  protected Object createTestObject() {   
    return new IntArrayPojo(10000);
  }
View Full Code Here

TOP

Related Classes of com.bubble.serializer.objects.IntArrayPojo

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.