Package com.google.inject.spi

Examples of com.google.inject.spi.TypeListenerBinding


    paramErrors.throwIfNewErrors(i);
    EncounterImpl localEncounterImpl = new EncounterImpl(paramErrors, this.injector.lookups);
    Iterator localIterator = this.typeListenerBindings.iterator();
    while (localIterator.hasNext())
    {
      TypeListenerBinding localTypeListenerBinding = (TypeListenerBinding)localIterator.next();
      if (localTypeListenerBinding.getTypeMatcher().matches(paramTypeLiteral))
        try
        {
          localTypeListenerBinding.getListener().hear(paramTypeLiteral, localEncounterImpl);
        }
        catch (RuntimeException localRuntimeException)
        {
          paramErrors.errorNotifyingTypeListener(localTypeListenerBinding, paramTypeLiteral, localRuntimeException);
        }
View Full Code Here

TOP

Related Classes of com.google.inject.spi.TypeListenerBinding

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.