Package com.google.inject.internal.MoreTypes

Examples of com.google.inject.internal.MoreTypes.ParameterizedTypeImpl


public class OptionHandlerUtil {
  /** Generate a key for an {@link OptionHandlerFactory} in Guice. */
  @SuppressWarnings("unchecked")
  public static <T> Key<OptionHandlerFactory<T>> keyFor(final Class<T> valueType) {
    final Type factoryType =
        new ParameterizedTypeImpl(null, OptionHandlerFactory.class, valueType);

    return (Key<OptionHandlerFactory<T>>) Key.get(TypeLiteral.get(factoryType));
  }
View Full Code Here

TOP

Related Classes of com.google.inject.internal.MoreTypes.ParameterizedTypeImpl

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.