com.google.inject.binder.AnnotatedBindingBuilder Maven / Gradle / Ivy
package com.google.inject.binder;
import java.lang.annotation.Annotation;
/**
* See the EDSL examples at {@link com.google.inject.Binder}.
*/
public interface AnnotatedBindingBuilder extends LinkedBindingBuilder {
/**
* See the EDSL examples at {@link com.google.inject.Binder}.
*/
LinkedBindingBuilder annotatedWith(
Class extends Annotation> annotationType);
/**
* See the EDSL examples at {@link com.google.inject.Binder}.
*/
LinkedBindingBuilder annotatedWith(Annotation annotation);
}