
fr.vergne.translation.util.impl.DefaultMapNamer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of translation-core Show documentation
Show all versions of translation-core Show documentation
Basic features to support a translation project.
The newest version!
package fr.vergne.translation.util.impl;
import fr.vergne.translation.util.MapNamer;
public class DefaultMapNamer implements MapNamer {
@Override
public String getName() {
return "Default Namer";
}
@Override
public String getDescription() {
return "Use the default string representation of the map IDs.";
}
@Override
public String getNameFor(MapID id) {
return id.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy