* @see de.willuhn.jameica.gui.dialogs.AbstractDialog#paint(org.eclipse.swt.widgets.Composite)
*/
protected void paint(Composite parent) throws Exception
{
HBCIDBService service = (HBCIDBService) Application.getServiceFactory().lookup(HBCI.class,"database");
DBSupport driver = service.getDriver();
StringBuffer sb = new StringBuffer();
sb.append(i18n.tr("JDBC-Treiber: {0}\n",driver.getJdbcDriver()));
sb.append(i18n.tr("JDBC-URL: {0}\n",driver.getJdbcUrl()));
sb.append(i18n.tr("JDBC-Username: {0}\n",driver.getJdbcUsername()));
sb.append(i18n.tr("JDBC-Passwort: {0}\n",driver.getJdbcPassword()));
Container container = new SimpleContainer(parent);
container.addHeadline(i18n.tr("Datenbank-Einstellungen"));
TextAreaInput text = new TextAreaInput(sb.toString());
container.addPart(text);