*/
public DatabasePropertyResourceBundle(URL resourceUrl,
DatabasePropertyResourceBundle parent) throws IOException {
Preconditions.checkNotNull(resourceUrl);
if (parent == null) {
properties = new EProperties();
} else {
this.parent = parent;
properties = new EProperties(parent.properties);
}
properties.load(resourceUrl);
}