
org.codehaus.plexus.util.interpolation.MapBasedValueSource Maven / Gradle / Ivy
Go to download
A collection of various utility classes to ease working with strings, files, command lines, XML and more.
package org.codehaus.plexus.util.interpolation;
import java.util.Map;
public class MapBasedValueSource
implements ValueSource
{
private final Map values;
public MapBasedValueSource( Map values )
{
this.values = values;
}
public Object getValue( String expression )
{
return values.get( expression );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy