Package de.willuhn.jameica.hbci.gui.views

Source Code of de.willuhn.jameica.hbci.gui.views.SparQuote

/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/gui/views/SparQuote.java,v $
* $Revision: 1.2 $
* $Date: 2007/03/21 16:56:56 $
* $Author: willuhn $
* $Locker:  $
* $State: Exp $
*
* Copyright (c) by willuhn.webdesign
* All rights reserved
*
**********************************************************************/

package de.willuhn.jameica.hbci.gui.views;

import de.willuhn.jameica.gui.AbstractView;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.system.Application;
import de.willuhn.util.I18N;

/**
* View zur Anzeige der Sparquote.
*/
public class SparQuote extends AbstractView
{

  /**
   * @see de.willuhn.jameica.gui.AbstractView#bind()
   */
  public void bind() throws Exception
  {
    I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();

    GUI.getView().setTitle(i18n.tr("Sparquote eines Kontos"));

    de.willuhn.jameica.hbci.gui.parts.SparQuote q = new de.willuhn.jameica.hbci.gui.parts.SparQuote();
    q.paint(getParent());
  }

}


/*********************************************************************
* $Log: SparQuote.java,v $
* Revision 1.2  2007/03/21 16:56:56  willuhn
* @N Online-Hilfe aktualisiert
* @N Bug 337 (Stichtag in Sparquote)
* @C Refactoring in Sparquote
*
* Revision 1.1  2006/07/13 00:21:15  willuhn
* @N Neue Auswertung "Sparquote"
*
**********************************************************************/
TOP

Related Classes of de.willuhn.jameica.hbci.gui.views.SparQuote

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.