Searched refs:bindingAnnotation (Results 1 – 5 of 5) sorted by relevance
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | Parameter.java | 40 private final Annotation bindingAnnotation; field in Parameter 47 this.bindingAnnotation = getBindingAnnotation(annotations); in Parameter() 66 if (bindingAnnotation != null) { in toString() 67 result.append(bindingAnnotation).append(" "); in toString() 138 return bindingAnnotation != null ? Key.get(type, bindingAnnotation) : Key.get(type); in getBindingForType() 148 Annotation bindingAnnotation = null; in getBindingAnnotation() local 152 bindingAnnotation == null, in getBindingAnnotation() 154 bindingAnnotation, in getBindingAnnotation() 156 bindingAnnotation = annotation; in getBindingAnnotation() 159 return bindingAnnotation; in getBindingAnnotation()
|
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/ |
D | CheckedProviderMethodsModule.java | 138 Annotation bindingAnnotation = Annotations.findBindingAnnotation(errors, member, annotations); in getKey() local 139 return bindingAnnotation == null ? Key.get(type) : Key.get(type, bindingAnnotation); in getKey()
|
/external/guice/extensions/mini/src/com/google/inject/mini/ |
D | MiniGuice.java | 316 Annotation bindingAnnotation = null; in key() local 321 if (bindingAnnotation != null) { in key() 324 bindingAnnotation = a; in key() 326 return new Key(type, bindingAnnotation); in key()
|
/external/guice/core/src/com/google/inject/internal/ |
D | ProviderMethodsModule.java | 283 Annotation bindingAnnotation = Annotations.findBindingAnnotation(errors, member, annotations); in getKey() local 284 return bindingAnnotation == null ? Key.get(type) : Key.get(type, bindingAnnotation); in getKey()
|
D | Errors.java | 358 public Errors misplacedBindingAnnotation(Member member, Annotation bindingAnnotation) { in misplacedBindingAnnotation() argument 362 member, bindingAnnotation); in misplacedBindingAnnotation()
|