All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mockit.internal.injection.MultiValuedProvider Maven / Gradle / Ivy

Go to download

JMockit is a Java toolkit for automated developer testing. It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external APIs; JUnit (4 & 5) and TestNG test runners are supported. It also contains an advanced code coverage tool.

There is a newer version: 1.49
Show newest version
/*
 * Copyright (c) 2006 Rogério Liesenfeld
 * This file is subject to the terms of the MIT license (see LICENSE.txt).
 */
package mockit.internal.injection;

import java.lang.reflect.*;
import java.util.*;
import javax.annotation.*;

import static mockit.internal.util.Utilities.getClassType;

final class MultiValuedProvider extends InjectionProvider
{
   @Nonnull private final List individualProviders;

   MultiValuedProvider(@Nonnull Type elementType)
   {
      super(elementType, "");
      individualProviders = new ArrayList();
   }

   void addInjectable(@Nonnull InjectionProvider provider)
   {
      individualProviders.add(provider);
   }

   @Nonnull @Override
   public Class getClassOfDeclaredType() { return getClassType(declaredType); }

   @Nullable @Override
   public Object getValue(@Nullable Object owner)
   {
      List values = new ArrayList(individualProviders.size());

      for (InjectionProvider provider : individualProviders) {
         Object value = provider.getValue(owner);
         values.add(value);
      }

      return values;
   }
}