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

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


    EmpfaengerControl control = new EmpfaengerControl(this);
   
    control.getEmpfaengerListe().paint(getParent());

    ButtonArea buttons = new ButtonArea();
    buttons.addButton(i18n.tr("Neue Adresse"),new EmpfaengerNew(),null,true,"contact-new.png");
    buttons.paint(getParent());
  }
View Full Code Here


  /**
   * Erzeugt das Kontext-Menu fuer eine Liste von Empfaengern.
   */
  public EmpfaengerList()
  {
    addItem(new CheckedSingleContextMenuItem(i18n.tr("�ffnen"),new EmpfaengerNew(),"document-open.png"));
    addItem(new ContextMenuItem(i18n.tr("Neue Adresse..."), new ENeu(),"contact-new.png"));
    addItem(new CheckedHibiscusAddressContextMenuItem(i18n.tr("L�schen..."), new DBObjectDelete(),"user-trash-full.png"));
    addItem(ContextMenuItem.SEPARATOR);
    addItem(new CheckedSingleContextMenuItem(i18n.tr("Neue �berweisung..."),new AuslandsUeberweisungNew(),"stock_next.png"));
    addItem(new CheckedSingleContextMenuItem(i18n.tr("Neue Lastschrift..."),new SepaLastschriftNew(),"stock_previous.png"));
View Full Code Here

   */
  public Part getEmpfaengerListe() throws RemoteException
  {
    if (list != null)
      return list;
    list = new de.willuhn.jameica.hbci.gui.parts.EmpfaengerList(new EmpfaengerNew());
    return list;
  }
View Full Code Here

  /**
   * @see de.willuhn.jameica.gui.Part#paint(org.eclipse.swt.widgets.Composite)
   */
  public void paint(Composite parent) throws RemoteException
  {
    EmpfaengerList l = new EmpfaengerList(new EmpfaengerNew());
    l.setSummary(false);
    l.paint(parent);
  }
View Full Code Here

    /**
     * @see de.willuhn.jameica.search.Result#execute()
     */
    public void execute() throws RemoteException, ApplicationException
    {
      new EmpfaengerNew().handleAction(this.address);
    }
View Full Code Here

TOP

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

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.