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

org.sfm.reflect.GetterInstantiator Maven / Gradle / Ivy

package org.sfm.reflect;


public class GetterInstantiator implements Instantiator {
    private final Getter getter;

    public GetterInstantiator(Getter getter) {
        this.getter = getter;
    }

    @Override
    public T newInstance(S s) throws Exception {
        return getter.get(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy