Package com.tll.model.test

Examples of com.tll.model.test.EntityBeanFactory


  protected void addModules(List<Module> modules) {
    modules.add(new TestPersistenceUnitModelModule());
  }

  private Account getTestEntity() {
    final EntityBeanFactory ebf = injector.getInstance(EntityBeanFactory.class);
    final Account account = ebf.getEntityCopy(Account.class, true);
    final Account parent = ebf.getEntityCopy(Account.class, true);
    final AccountAddress aa1 = ebf.getEntityCopy(AccountAddress.class, true);
    final AccountAddress aa2 = ebf.getEntityCopy(AccountAddress.class, true);

    account.setParent(parent);
    account.addAccountAddress(aa1);
    account.addAccountAddress(aa2);
View Full Code Here

TOP

Related Classes of com.tll.model.test.EntityBeanFactory

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.