com.google.inject.binder.AnnotatedElementBuilder 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 AnnotatedElementBuilder {
/**
* See the EDSL examples at {@link com.google.inject.Binder}.
*/
void annotatedWith(Class extends Annotation> annotationType);
/**
* See the EDSL examples at {@link com.google.inject.Binder}.
*/
void annotatedWith(Annotation annotation);
}