Package de.willuhn.jameica.hbci.gui.parts

Examples of de.willuhn.jameica.hbci.gui.parts.PassportTree


    Container c = new SimpleContainer(getParent());
    c.addText(i18n.tr("Klicken Sie auf \"Neuer Bank-Zugang...\", um eine neue PIN/TAN- oder " +
                      "Kartenleser-Konfiguration anzulegen oder eine Schl�sseldatei zu erstellen bzw. zu importieren."),true);

    final PassportTree tree = control.getPassports();

    ButtonArea buttons = new ButtonArea();
    buttons.addButton(new Button(i18n.tr("Neuer Bank-Zugang..."),new Action() {
      public void handleAction(Object context) throws ApplicationException
      {
        new PassportDetail().handleAction(tree.getPassport());
      }
    },null,false,"seahorse-preferences.png"));
    buttons.paint(getParent());

    tree.paint(getParent());
  }
View Full Code Here


   * @throws RemoteException
   */
  public PassportTree getPassports() throws RemoteException
  {
    if (this.passports == null)
      this.passports = new PassportTree();
    return this.passports;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.hbci.gui.parts.PassportTree

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.