*/
public static String getProperty(String key)
{
- return applicationProperties.getProperty(key);
+ String prop = applicationProperties.getProperty(key);
+ if (prop == null && Platform.isJS())
+ {
+ prop = applicationProperties.getProperty(Platform.getUniqueAppletID()
+ + "_" + JS_PROPERTY_PREFIX + key);
+ }
+ return prop;
}
/**
* if (key.indexOf(prefix) == 0) { value = "" + info[key];
*/
+ System.out.println(
+ "Platform id=" + id + " reading Info." + key + " = " + value);
p.put(id + "_" + key, value);
/**