Gets a key for an injection type and an annotation strategy.
(Class<T> type, AnnotationStrategy annotationStrategy)
| 216 | |
| 217 | /** Gets a key for an injection type and an annotation strategy. */ |
| 218 | static <T> Key<T> get(Class<T> type, AnnotationStrategy annotationStrategy) { |
| 219 | return new Key<T>(type, annotationStrategy); |
| 220 | } |
| 221 | |
| 222 | /** Gets a key for an injection type. */ |
| 223 | public static <T> Key<T> get(Class<T> type) { |