Package de.willuhn.jameica.hbci.rmi

Examples of de.willuhn.jameica.hbci.rmi.Duplicatable.duplicate()


      throw new ApplicationException(i18n.tr("Keine zu duplizierenden Daten angegeben"));

    try {
      Duplicatable o = (Duplicatable) context;
      Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Dupliziert"),StatusBarMessage.TYPE_SUCCESS));
      new Open().handleAction(o.duplicate());
    }
    catch (RemoteException e)
    {
      Logger.error("error while duplicating object",e);
      GUI.getStatusBar().setErrorText(i18n.tr("Fehler beim Duplizieren"));
View Full Code Here


    // 3. Auftrag laden
    Duplicatable template = (Duplicatable) service.createObject(type,id);

    // 4. Auftrag clonen und speichern
    HibiscusDBObject order = (HibiscusDBObject) template.duplicate();
    String hostname        = Application.getCallback().getHostname();

    try
    {
      order.transactionBegin();
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.