All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.inject.ProvidedBy Maven / Gradle / Ivy

package com.google.inject;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import javax.inject.Provider;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * A pointer to the default provider type for a type.
 */
@Retention(RUNTIME)
@Target(TYPE)
public @interface ProvidedBy {

    /**
     * The implementation type.
     */
    Class> value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy