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

bt.runtime.Contribution Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.runtime;

import com.google.inject.Module;

import java.util.function.Consumer;

class Contribution {

    private Class moduleType;
    private Consumer contributor;

    Contribution(Class moduleType, Consumer contributor) {
        this.moduleType = moduleType;
        this.contributor = contributor;
    }

    public Class getModuleType() {
        return moduleType;
    }

    public void apply(T module) {
        contributor.accept(module);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy