Package de.willuhn.jameica.hbci.gui.action

Examples of de.willuhn.jameica.hbci.gui.action.SepaDauerauftragDelete


   */
  public SepaDauerauftragList()
  {
    addItem(new CheckedContextMenuItem(i18n.tr("�ffnen"),            new SepaDauerauftragNew(),"document-open.png"));
    addItem(new ContextMenuItem(i18n.tr("Neuer Dauerauftrag..."),    new DNeu(),"text-x-generic.png"));
    addItem(new CheckedContextMenuItem(i18n.tr("L�schen..."),        new SepaDauerauftragDelete(),"user-trash-full.png"));
    addItem(ContextMenuItem.SEPARATOR);
    addItem(new ContextMenuItem(i18n.tr("Dauerauftr�ge abrufen..."), new KontoFetchSepaDauerauftraege(),"mail-send-receive.png"));
    addItem(ContextMenuItem.SEPARATOR);
    addItem(new CheckedSingleContextMenuItem(i18n.tr("Drucken..."),new Action() {
      public void handleAction(Object context) throws ApplicationException
View Full Code Here


    ButtonArea buttonArea = new ButtonArea();
    String s = i18n.tr("Jetzt ausf�hren...");
    if (da.isActive())
      s = i18n.tr("Jetzt aktualisieren...");

    buttonArea.addButton(i18n.tr("L�schen"),        new SepaDauerauftragDelete(), da, false,"user-trash-full.png");
    buttonArea.addButton(s,                          new Action()
    {
      public void handleAction(Object context) throws ApplicationException
      {
        if (control.handleStore())
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.hbci.gui.action.SepaDauerauftragDelete

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.