Package com.techempower.ee7.tests

Examples of com.techempower.ee7.tests.Fortunes


  private List<Fortune> data;

  @PostConstruct
  private void postConstruct() {
    data = em.createNamedQuery("allFortunes", Fortune.class).getResultList();
    data.add(new Fortune(ADDITIONAL_FORTUNE_ID, ADDITIONAL_FORTUNE_CONTENT));
    Collections.sort(data);
  }
View Full Code Here

TOP

Related Classes of com.techempower.ee7.tests.Fortunes

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.