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

com.cookingfox.chefling.impl.helper.ConstructorParameters Maven / Gradle / Ivy

Go to download

Chefling is a very minimal dependency injection container written in pure Java.

There is a newer version: 7.1.1
Show newest version
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