Package at.compax.bbsng.dataimport.app.model

Examples of at.compax.bbsng.dataimport.app.model.Apprentice


  private void setId(final Contract obj, final int index) {
    obj.setId(Long.valueOf(index));
  }

  public void setApprentice(final Contract obj, final int index) {
    final Apprentice apprentice = apprenticeExample.getRandomApprentice();
    obj.setApprenticeId(apprentice.getId());
  }
View Full Code Here


  public List<Apprentice> getNewTransientApprentices() {
    return data;
  }

  public Apprentice getNewTransientApprentice(final int index) {
    final Apprentice obj = new Apprentice();
    setId(obj, index);
    setAddress(obj);
    setContact(obj, index);
    setName(obj);
    return obj;
View Full Code Here

TOP

Related Classes of at.compax.bbsng.dataimport.app.model.Apprentice

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.