shaded.com.google.inject.internal.SingleMethodInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-contract-shade Show documentation
Show all versions of spring-cloud-contract-shade Show documentation
Spring Cloud Contract Shaded Dependencies
/*
* Copyright (C) 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package shaded.shaded.com.google.inject.internal;
import shaded.shaded.com.google.inject.internal.InjectorImpl.MethodInvoker;
import shaded.shaded.com.google.inject.spi.InjectionPoint;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.function.BiFunction;
/** Invokes an injectable method. */
final class SingleMethodInjector implements SingleMemberInjector {
private final MethodInvoker methodInvoker;
private final SingleParameterInjector>[] parameterInjectors;
private final InjectionPoint injectionPoint;
SingleMethodInjector(InjectorImpl injector, InjectionPoint injectionPoint, Errors errors)
throws ErrorsException {
this.injectionPoint = injectionPoint;
final Method method = (Method) injectionPoint.getMember();
methodInvoker = createMethodInvoker(method);
parameterInjectors = injector.getParametersInjectors(injectionPoint.getDependencies(), errors);
}
private MethodInvoker createMethodInvoker(final Method method) {
if (InternalFlags.isBytecodeGenEnabled()) {
try {
BiFunction