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

Source Code of de.willuhn.jameica.hbci.gui.action.ProtokollList

/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/gui/action/ProtokollList.java,v $
* $Revision: 1.1 $
* $Date: 2005/05/02 23:56:45 $
* $Author: web0 $
* $Locker:  $
* $State: Exp $
*
* Copyright (c) by willuhn.webdesign
* All rights reserved
*
**********************************************************************/
package de.willuhn.jameica.hbci.gui.action;

import de.willuhn.jameica.gui.Action;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.rmi.Konto;
import de.willuhn.jameica.system.Application;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.I18N;

/**
* Action fuer das Protokoll eines Kontos.
*/
public class ProtokollList implements Action
{

  /**
   * @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object)
   */
  public void handleAction(Object context) throws ApplicationException
  {
    I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();

    if (context == null || !(context instanceof Konto))
      throw new ApplicationException(i18n.tr("Bitte w�hlen Sie ein Konto aus"));

    GUI.startView(de.willuhn.jameica.hbci.gui.views.ProtokollList.class,context);
  }

}


/**********************************************************************
* $Log: ProtokollList.java,v $
* Revision 1.1  2005/05/02 23:56:45  web0
* @B bug 66, 67
* @C umsatzliste nach vorn verschoben
* @C protokoll nach hinten verschoben
*
**********************************************************************/
TOP

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

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.