Home
last modified time | relevance | path

Searched refs:forStaticMethodsAndFields (Results 1 – 3 of 3) sorted by relevance

/external/guice/core/src/com/google/inject/spi/
DStaticInjectionRequest.java67 return InjectionPoint.forStaticMethodsAndFields(type); in getInjectionPoints()
DInjectionPoint.java332 public static Set<InjectionPoint> forStaticMethodsAndFields(TypeLiteral<?> type) { in forStaticMethodsAndFields() method in InjectionPoint
361 public static Set<InjectionPoint> forStaticMethodsAndFields(Class<?> type) { in forStaticMethodsAndFields() method in InjectionPoint
362 return forStaticMethodsAndFields(TypeLiteral.get(type)); in forStaticMethodsAndFields()
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java221 InjectionPoint.forStaticMethodsAndFields(HasInjections.class); in testAddForStaticMethodsAndFields()