Package com.google.inject.testing.guiceberry.controllable.IcStrategy

Examples of com.google.inject.testing.guiceberry.controllable.IcStrategy.ServerSupport


    public IcServer<T> get() {
      return new IcServer<T>() {    
        public T getOverride(Provider<? extends T> delegate) {
          ControllableId<T> controllableId =
            new ControllableId<T>(testIdProvider.get(), key);
          ServerSupport serverSupport = serverSupportProvider.get();
          if (!serverSupport.isControlled(controllableId)) {
            return delegate.get();
          }
          return serverSupport.getOverride(controllableId, delegate);
        }
      };
    }
View Full Code Here

TOP

Related Classes of com.google.inject.testing.guiceberry.controllable.IcStrategy.ServerSupport

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.