Package org.dmlite.model

Examples of org.dmlite.model.Entity.output()


  public void output(IEntities entities, String title) {
    Collection<IEntity> c = entities.getCollection();
    log.info("*** " + title + " ***");
    for (IEntity e : c) {
      Entity entity = (Entity) e;
      entity.output(entity.getClass().getSimpleName());
    }
  }

  /**
   * Output entity. Used in testing.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.