Searched refs:membersInjectionMethod (Results 1 – 3 of 3) sorted by relevance
174 ExecutableElement membersInjectionMethod, ExecutableType membersInjectionMethodType) { in forComponentMembersInjectionMethod() argument175 checkNotNull(membersInjectionMethod); in forComponentMembersInjectionMethod()178 InjectionAnnotations.getQualifier(membersInjectionMethod); in forComponentMembersInjectionMethod()184 .requestElement(membersInjectionMethod) in forComponentMembersInjectionMethod()
170 MethodSpec membersInjectionMethod = membersInjectionMethods.getOrCreate(provisionBinding.key()); in injectMembers() local172 membersInjectionMethod.returnType.equals(TypeName.OBJECT) in injectMembers()175 return Expression.create(returnType, CodeBlock.of("$N($L)", membersInjectionMethod, instance)); in injectMembers()
70 return reentrantComputeIfAbsent(membersInjectionMethods, key, this::membersInjectionMethod); in getOrCreate()73 private MethodSpec membersInjectionMethod(Key key) { in membersInjectionMethod() method in MembersInjectionMethods