Home | History | Annotate | Download | only in inject

Lines Matching refs:Blue

36                 bindConstant().annotatedWith(Blue.class).to("foo");
53 bindConstant().annotatedWith(Blue.class).to("foo");
63 "BindingAnnotationTest$Blue(value=5) was bound",
122 "BindingAnnotationTest$Blue(value=5) was bound",
130 @Blue(5)
146 @interface Blue {
170 public Blue createBlue(final int value) {
171 return new Blue() {
179 return Blue.class;
184 return o instanceof Blue && ((Blue) o).value() == value;