public abstract @interface

BindingAnnotation

implements Annotation
com.google.inject.BindingAnnotation

Class Overview

Annotates annotations which are used for binding. Only one such annotation may apply to a single injection point. You must also annotate binder annotations with @Retention(RUNTIME). For example:

   @Retention(RUNTIME)
   @Target({ FIELD, PARAMETER, METHOD })
   @BindingAnnotation
   public @interface Transactional {}
 

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation