colesico.framework.resource.internal.PropertiesBinderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-resource Show documentation
Show all versions of colesico-resource Show documentation
Colesico framework resource services provides ability of resource rewriting and localization
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