565758596061626364
if(dbkind == null) { throw new IllegalArgumentException("Invalid parameter: " + dbkind); } final String driver = MAPPINGS.getProperty(dbkind); if(driver == null) { throw new XBirdError("Could not find JDBC-Driver for: " + dbkind); } return driver; }
414243444546474849
public MessageFormatter(InputStream is) { final ResourceBundle b; try { b = new PropertyResourceBundle(is); } catch (IOException e) { throw new XBirdError(e); } bundle = convertMap(b); }