* @see de.willuhn.jameica.gui.AbstractView#bind()
*/
public void bind() throws Exception
{
final KontoControl control = new KontoControl(this);
GUI.getView().setTitle(i18n.tr("Vorhandene Bankverbindungen"));
control.getKontoListe().paint(getParent());
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("Konten aus HBCI-Konfiguration laden..."), new Action() {
public void handleAction(Object context) throws ApplicationException
{
control.handleReadFromPassport();
}
},null,false,"mail-send-receive.png");
buttons.addButton(i18n.tr("Konto manuell anlegen"),new KontoNew(),null,false,"system-file-manager.png");
buttons.paint(getParent());
}