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

colesico.framework.resource.internal.PropertiesBinderImpl Maven / Gradle / Ivy

Go to download

Colesico framework resource services provides ability of resource rewriting and localization

There is a newer version: 5.3.0
Show newest version
package colesico.framework.resource.internal;

import colesico.framework.resource.ResourceConfig;

public class PropertiesBinderImpl implements ResourceConfig.PropertiesBinder {

    private final EvaluationTool evaluationTool;

    public PropertiesBinderImpl(EvaluationTool evaluationTool) {
        this.evaluationTool = evaluationTool;
    }

    @Override
    public ResourceConfig.PropertiesBinder bind(String name, String value) {
        evaluationTool.addProperty(name, value);
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy