use of net.jangaroo.properties.model.ResourceBundleClass in project jangaroo-tools by CoreMedia.
the class PropertyClassGenerator method generate.
@Override
public File generate(File propertiesFile) {
PropertiesConfiguration p = new PropertiesConfiguration();
p.setDelimiterParsingDisabled(true);
Reader r = null;
try {
r = new BufferedReader(new InputStreamReader(new FileInputStream(propertiesFile), "UTF-8"));
p.load(r);
} catch (IOException e) {
throw new PropcException("Error while parsing properties file", propertiesFile, e);
} catch (ConfigurationException e) {
throw new PropcException("Error while parsing properties file", propertiesFile, e);
} finally {
try {
if (r != null) {
r.close();
}
} catch (IOException e) {
// not really
}
}
ResourceBundleClass bundle = new ResourceBundleClass(PropcHelper.computeBaseClassName(locations, propertiesFile));
// Create properties class, which registers itself with the bundle.
return generateJangarooClass(new PropertiesClass(bundle, PropcHelper.computeLocale(propertiesFile), p, propertiesFile));
}
use of net.jangaroo.properties.model.ResourceBundleClass in project jangaroo-tools by CoreMedia.
the class PropertyClassGeneratorTest method testSimplePropertySet.
@Test
public void testSimplePropertySet() throws Exception {
FileLocations locations = new FileLocations();
List<File> sourcePath = new ArrayList<File>();
sourcePath.add(new File(getClass().getResource("/").toURI()));
locations.setSourcePath(sourcePath);
locations.addSourceFile("testPackage/subPackage/Properties.properties");
locations.addSourceFile("testPackage/PropertiesTest.properties");
locations.addSourceFile("testPackage/PropertiesTest_de.properties");
locations.addSourceFile("testPackage/PropertiesTest_es_ES.properties");
locations.addSourceFile("testPackage/PropertiesTest_it_VA_WIN.properties");
PropertyClassGenerator generator = new PropertyClassGenerator(locations);
StringWriter writer = new StringWriter();
ResourceBundleClass rbc = new ResourceBundleClass("testPackage.PropertiesTest");
PropertiesConfiguration p = new PropertiesConfiguration();
p.setProperty("key", "Die Platte \"{1}\" enthält {0}.");
p.setProperty("key2", "Die Platte \"{1}\" enthält {0}.");
PropertiesClass pc = new PropertiesClass(rbc, null, p, null);
generator.generatePropertiesClass(pc, writer);
assertEquals(("package testPackage {\n" + "import joo.ResourceBundleAwareClassLoader;\n" + "import joo.JavaScriptObject;\n" + "\n" + "/**\n" + " * Properties class for ResourceBundle \"PropertiesTest\".\n" + " * @see PropertiesTest_properties#INSTANCE\n" + " */\n" + "[ResourceBundle('PropertiesTest')]\n" + "public class PropertiesTest_properties extends joo.JavaScriptObject {\n" + "\n" + "/**\n" + " * Singleton for the current user Locale's instance of ResourceBundle \"PropertiesTest\".\n" + " * @see PropertiesTest_properties\n" + " */\n" + "public static const INSTANCE:PropertiesTest_properties = ResourceBundleAwareClassLoader.INSTANCE.createSingleton(PropertiesTest_properties) as PropertiesTest_properties;\n" + "\n" + "[Resource(key='key',bundle='PropertiesTest')]\n" + "public native function get key():String;\n" + "[Resource(key='key2',bundle='PropertiesTest')]\n" + "public native function get key2():String;\n" + "\n" + "public function PropertiesTest_properties() {\n" + " this[\"key\"] = \"Die Platte \\\"{1}\\\" enthält {0}.\";\n" + " this[\"key2\"] = \"Die Platte \\\"{1}\\\" enthält {0}.\";\n" + "}\n" + "}\n" + "}").replaceAll("\n", LINE_SEPARATOR), writer.toString());
PropertiesClass psc = new PropertiesClass(rbc, Locale.ENGLISH, p, null);
writer = new StringWriter();
generator.generatePropertiesClass(psc, writer);
assertEquals(("package testPackage {\n" + "\n" + "/**\n" + " * Properties class for ResourceBundle \"PropertiesTest\" and Locale \"en\".\n" + " * @see PropertiesTest_properties#INSTANCE\n" + " */\n" + "[ResourceBundle('PropertiesTest_en')]\n" + "public class PropertiesTest_properties_en extends PropertiesTest_properties {\n" + "\n" + "\n" + "public function PropertiesTest_properties_en() {\n" + " this[\"key\"] = \"Die Platte \\\"{1}\\\" enthält {0}.\";\n" + " this[\"key2\"] = \"Die Platte \\\"{1}\\\" enthält {0}.\";\n" + "}\n" + "}\n" + "}").replaceAll("\n", LINE_SEPARATOR), writer.toString());
}
Aggregations