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

ch.dkitc.ridioc.DIInstanceMethodParam Maven / Gradle / Ivy

package ch.dkitc.ridioc;

public class DIInstanceMethodParam {

    private final Class type;
    private final Object value;

    public DIInstanceMethodParam(Class type, Object value) {
        this.type = type;
        this.value = value;
    }

    public Class getType() {
        return type;
    }

    public Object getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy