Examples of UmsatzDetail


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

   */
  private class OpenItem extends UmsatzItem
  {
    private OpenItem()
    {
      super(i18n.tr("�ffnen"),new UmsatzDetail(),"document-open.png");
    }
View Full Code Here

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

   * @throws RemoteException
   */
  public TablePart getUmsatzListe() throws RemoteException
  {
    if (this.umsaetze == null)
      this.umsaetze = new de.willuhn.jameica.hbci.gui.parts.UmsatzList(getKonto(),new UmsatzDetail());
    return this.umsaetze;
  }
View Full Code Here

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

  public Part getUmsatzList() throws RemoteException
  {
    if (umsatzList != null)
      return umsatzList;

    umsatzList = new UmsatzList(getKonto(),HBCIProperties.UMSATZ_DEFAULT_DAYS,new UmsatzDetail());
    umsatzList.setFilterVisible(false);
    return umsatzList;
  }
View Full Code Here

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

   * ct.
   * @throws RemoteException
   */
  public KontoauszugList() throws RemoteException
  {
    super((GenericIterator)null,new UmsatzDetail());

    this.setFilterVisible(false);

    // bei Ausloesungen ueber SWT-Events verzoegern wir
    // das Reload, um schnell aufeinanderfolgende Updates
View Full Code Here

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

   * @see de.willuhn.jameica.gui.Part#paint(org.eclipse.swt.widgets.Composite)
   */
  public void paint(Composite parent) throws RemoteException
  {
    GenericIterator list = de.willuhn.jameica.hbci.messaging.NeueUmsaetze.getNeueUmsaetze();
    UmsatzList umsaetze = new UmsatzList(list,new UmsatzDetail());
    umsaetze.addColumn(new KontoColumn());
    umsaetze.setFilterVisible(false);
    umsaetze.paint(parent);
  }
View Full Code Here

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

    {
      list.addFilter("empfaenger_konto like ?","%" + konto);
      list.addFilter("empfaenger_blz = ?",a.getBlz());
    }

    this.umsatzList = new UmsatzList(list,new UmsatzDetail());
    ((UmsatzList)this.umsatzList).setFilterVisible(false);
    return this.umsatzList;
  }
View Full Code Here

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

   * @param list eine Liste mit Objekten des Typs <code>Umsatz</code>
   * @throws RemoteException
   */
  public UmsatzTree(GenericIterator list) throws RemoteException
  {
    super(list, new UmsatzDetail());
   
    this.setRememberColWidths(true);
    this.setRememberOrder(true);
    this.setRememberState(true);
    this.setMulti(true);
View Full Code Here

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

    /**
     * @see de.willuhn.jameica.search.Result#execute()
     */
    public void execute() throws RemoteException, ApplicationException
    {
      new UmsatzDetail().handleAction(this.umsatz);
    }
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.