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

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


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

  public void testWithLong() {
    final WithLong withLong = new WithLong();
    withLong.setField(0);
    assertEquals("", 0, withLong.getField());
    withLong.setField(1);
    assertEquals("", 1, withLong.getField());
  }
View Full Code Here

TOP

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

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.