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

fr.vergne.translation.util.impl.DefaultMapNamer Maven / Gradle / Ivy

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