Package net.sf.joafip.store.entity.bytecode

Examples of net.sf.joafip.store.entity.bytecode.WithObject


    withLong.setField(1);
    assertEquals("", 1, withLong.getField());
  }

  public void testWithObject() {
    final WithObject withObject = new WithObject();
    Object object = new Object();
    withObject.setObject(object);
    assertEquals("", object, withObject.getObject());
    object = new Object();
    withObject.setObject(object);
    assertEquals("", object, withObject.getObject());
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.store.entity.bytecode.WithObject

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.