Package hirondelle.web4j.model

Examples of hirondelle.web4j.model.ConvertParam


    }
    return result;
  }

  private void addChildToList(Constructor<?> aChildCtor, List<Object> aChildren, ResultSet aRow) throws SQLException, ModelCtorException {
    ConvertParam convertParam = BuildImpl.forConvertParam();
    if( convertParam.isSupported(aChildCtor.getDeclaringClass())) {
      addBaseChildToList(aChildCtor.getDeclaringClass(), aChildren, aRow);
    }
    else {
      //regular model object, not a base object
      addRegularChildToList(aChildCtor, aChildren, aRow);
View Full Code Here

TOP

Related Classes of hirondelle.web4j.model.ConvertParam

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.