Package org.springframework.boot.config.processor.model

Examples of org.springframework.boot.config.processor.model.EntityModel


  private Collection<EntityModel> parseEntityModel() {
    EntityModelFactory factory = new EntityModelFactory(env);
    Collection<EntityModel> result = new ArrayList<EntityModel>();
    for (TypeElement element : getTypeElementCandidates()) {
      EntityModel entityModel = factory.create(element);
      result.add(entityModel);
    }
    for (ExecutableElement method : getExecutableElementCandidates()) {
      if (isMethodCandidate(method)) {
        TypeElement element = modelHelper.safeToTypeElement(method.getReturnType());
        if (element != null) {
          EntityModel entityModel = factory.create(element, method);
          result.add(entityModel);
        }
      }
    }
    return result;
View Full Code Here

TOP

Related Classes of org.springframework.boot.config.processor.model.EntityModel

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.