
com.cookingfox.chefling.impl.helper.ConstructorParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chefling-di-java Show documentation
Show all versions of chefling-di-java Show documentation
Chefling is a very minimal dependency injection container written in pure Java.
package com.cookingfox.chefling.impl.helper;
import java.lang.reflect.Constructor;
/**
* Wraps a type's selected constructor + parameter types, so it can be cached.
*/
public class ConstructorParameters {
public final Constructor constructor;
public final Class[] parameterTypes;
public ConstructorParameters(Constructor constructor, Class[] parameterTypes) {
this.constructor = constructor;
this.parameterTypes = parameterTypes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy