Examples of open()


Examples of de.willuhn.jameica.hbci.gui.dialogs.SepaLastschriftDialog.open()

        u.store(); // wir speichern bei Bedarf selbst.

      SepaLastschriftDialog d = new SepaLastschriftDialog(u,SepaLastschriftDialog.POSITION_CENTER);
      try
      {
        if (!((Boolean)d.open()).booleanValue())
          return;
      }
      catch (OperationCanceledException oce)
      {
        Logger.info(oce.getMessage());
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.SepaLastschriftMergeDialog.open()

      boolean delete = false;
      int count = map.size();
      if (count > 1 || inDb)
      {
        SepaLastschriftMergeDialog dialog = new SepaLastschriftMergeDialog(SepaLastschriftMergeDialog.POSITION_CENTER,count,inDb);
        Object o = dialog.open();
        if (o != null)
          delete = ((Boolean)o).booleanValue();
      }
     
      // OK, wir duerfen weiter machen. Erstmal die Sammelauftraege anlegen
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.SepaSammelTransferDialog.open()

        u.store(); // wir speichern bei Bedarf selbst.

      SepaSammelTransferDialog d = new SepaSammelTransferDialog(u,SepaSammelTransferDialog.POSITION_CENTER);
      try
      {
        if (!((Boolean)d.open()).booleanValue())
          return;
      }
      catch (OperationCanceledException oce)
      {
        Logger.info(oce.getMessage());
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.SepaUeberweisungMergeDialog.open()

      boolean delete = false;
      int count = map.size();
      if (count > 1 || inDb)
      {
        SepaUeberweisungMergeDialog dialog = new SepaUeberweisungMergeDialog(SepaUeberweisungMergeDialog.POSITION_CENTER,count,inDb);
        Object o = dialog.open();
        if (o != null)
          delete = ((Boolean)o).booleanValue();
      }
     
      // OK, wir duerfen weiter machen. Erstmal die Sammelauftraege anlegen
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.SynchronizeExecuteDialog.open()

      return;

    try
    {
      SynchronizeExecuteDialog d = new SynchronizeExecuteDialog(jobs,SynchronizeExecuteDialog.POSITION_CENTER);
      d.open();
    }
    catch (ApplicationException ae)
    {
      throw ae;
    }
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.SynchronizeOptionsDialog.open()

      public void handleAction(Object context) throws ApplicationException
      {
        try
        {
          SynchronizeOptionsDialog d = new SynchronizeOptionsDialog(getKonto(),SynchronizeOptionsDialog.POSITION_CENTER);
          d.open();
        }
        catch (OperationCanceledException oce)
        {
          Logger.info(oce.getMessage());
          return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.TransferMergeDialog.open()

      // Wenn der Sammel-Transfer noch kein Konto hat, nehmen wir das erste
      // der Einzel-Auftraege
      if (t.getKonto() == null)
        t.setKonto(transfers[0].getKonto());
      TransferMergeDialog d = new TransferMergeDialog(t,TransferMergeDialog.POSITION_CENTER);
      SammelTransfer existing = (SammelTransfer) d.open();
      if (!existing.isNewObject()) // Das ist ein bereits existierender
        t = existing;
     
      boolean delete = d.getDelete();
     
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.UmsatzTypListDialog.open()

        // Dialog anzeigen, bei dem nur die zum Betrag passenden Kategorien angezeigt werden
        if (ut == null && umsaetze[0].getBetrag() != 0)
          typ = (umsaetze[0].getBetrag() > 0 ? UmsatzTyp.TYP_EINNAHME : UmsatzTyp.TYP_AUSGABE);
      }
      UmsatzTypListDialog d = new UmsatzTypListDialog(UmsatzTypListDialog.POSITION_CENTER,ut,typ);
      ut = (UmsatzTyp) d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.UmsatzTypNewDialog.open()

                  typ = (UmsatzTyp) existing.next();
                }
                else
                {
                  UmsatzTypNewDialog d = new UmsatzTypNewDialog(UmsatzTypNewDialog.POSITION_MOUSE);
                  typ = (UmsatzTyp) d.open();
                }
                typ.setPattern(text);
                typ.setRegex(((Boolean)regex.getValue()).booleanValue());
                typ.store();
                GUI.getStatusBar().setSuccessText(i18n.tr("Umsatz-Kategorie gespeichert"));
View Full Code Here

Examples of de.willuhn.jameica.hbci.passport.PassportHandle.open()

            {
              CardTerminal terminal = terminals.get(0);
              String name = terminal.getName();
              temp.setPCSCName(name);
              PassportHandle handle = new PassportHandleImpl(temp);
              handle.open();
              handle.close(); // nein, nicht im finally, denn wenn das Oeffnen

              // Passport liess sich oeffnen und schliessen. Dann haben
              // wir den Kartenleser gefunden.
              monitor.log("  " + name + " " + i18n.tr("gefunden"));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.