Package com.google.gwt.inject.rebind.resolution.UnresolvedBindingValidator

Examples of com.google.gwt.inject.rebind.resolution.UnresolvedBindingValidator.InvalidKeys


    // though BindingResolver may be held on to (eg, {@link GinjectorBindings}, we won't leak
    // memory used for temporary storage during resolution.
    DependencyExplorerOutput output = explorerFactory.create(branch).explore(origin);
   
    UnresolvedBindingValidator validator = validatorFactory.create(branch);
    InvalidKeys invalidKeys = validator.getInvalidKeys(output);
    if (validator.validate(output, invalidKeys)) {
      validator.pruneInvalidOptional(output, invalidKeys);
      installerFactory.create(branch).installBindings(output);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.inject.rebind.resolution.UnresolvedBindingValidator.InvalidKeys

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.