/ .. / / -> download
import java.io.*;
import java.util.*;

public class InfoEntityResolver {

	static Properties props;
	
	public static String resolve(String entityName) {
		if(props == null) {
			props = new Properties();
			String filename = System.getProperty("info.entity.map.file", "info-entity-map.txt");
			try {
				props.load(new FileInputStream(filename));
			}
			catch(IOException e) {
				System.err.println("Can't read " + filename);
			}
		}
		return props.getProperty(entityName, entityName);
	}
}

/ gopher://khzae.net/0/s1000d/S1000D-XSL-Stylesheets/src/ext/InfoEntityResolver.java
Styles: Light Dark Classic