com.smartling.maven.plugins.smartlingapi.mojo.FixedValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartling-api-maven-plugin Show documentation
Show all versions of smartling-api-maven-plugin Show documentation
Maven plugin for accessing Smartling API.
The newest version!
package com.smartling.maven.plugins.smartlingapi.mojo;
import org.apache.commons.lang3.StringUtils;
public class FixedValue extends NameTransformer
{
private String value = StringUtils.EMPTY;
public String getValue()
{
return value;
}
public void setValue(final String value)
{
this.value = value;
}
@Override
public String transform(final String name, final String locale)
{
return injectLocale(value, locale);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy