PropertyResourceBundle bundle = new PropertyResourceBundle(
createPropertyFileReader());
StringBuilder resultText = new StringBuilder(
"The resource bundle contains the keys \n");
resultText.append(bundle.keySet());
// the bundleName should be the real name of the bundle
String bundleName = "testbundle";
String prefixOfConstants = PREFIX;
StringBuilder sourcecode = new StringBuilder();