Searched refs:membersInjectionMethod (Results 1 – 3 of 3) sorted by relevance
178 ExecutableElement membersInjectionMethod, ExecutableType membersInjectionMethodType) { in forComponentMembersInjectionMethod() argument179 checkNotNull(membersInjectionMethod); in forComponentMembersInjectionMethod()182 injectionAnnotations.getQualifier(membersInjectionMethod); in forComponentMembersInjectionMethod()188 .requestElement(membersInjectionMethod) in forComponentMembersInjectionMethod()
165 MethodSpec membersInjectionMethod = membersInjectionMethods.getOrCreate(provisionBinding.key()); in injectMembers() local167 membersInjectionMethod.returnType.equals(TypeName.OBJECT) in injectMembers()170 return Expression.create(returnType, CodeBlock.of("$N($L)", membersInjectionMethod, instance)); in injectMembers()
78 return reentrantComputeIfAbsent(membersInjectionMethods, key, this::membersInjectionMethod); in getOrCreate()81 private MethodSpec membersInjectionMethod(Key key) { in membersInjectionMethod() method in MembersInjectionMethods