package tmxtest; /** *
Title: TMX Example
*Description: Java Class to load text resources from TMX file
*Copyright: Copyright (c) 2004 Tecnick.com S.r.l.
* @author Nicola Asuni * @version 1.0 */ public class tmxtest { /** * loads TMX data */ final static TMXResourceBundle res = new TMXResourceBundle("sample_tmx.xml", "en"); /** * Prints 2 strings on System.out * @param args String[] */ public static void main(String[] args) { System.out.println(res.getString("hello", "")); System.out.println(res.getString("world", "")); } }