Package com.avaje.ebeaninternal.server.querydefn

Examples of com.avaje.ebeaninternal.server.querydefn.OrmQueryDetail


  /**
   * Return the many property included in the query or null if one is not.
   */
  public BeanPropertyAssocMany<?> getManyProperty(SpiQuery<?> query) {

    OrmQueryDetail detail = query.getDetail();
    for (int i = 0; i < propertiesMany.length; i++) {
      if (detail.includes(propertiesMany[i].getName())) {
        return propertiesMany[i];
      }
    }

    return null;
View Full Code Here

TOP

Related Classes of com.avaje.ebeaninternal.server.querydefn.OrmQueryDetail

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.