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

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

/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/gui/action/KontoNew.java,v $
* $Revision: 1.5 $
* $Date: 2005/11/07 18:51:28 $
* $Author: willuhn $
* $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.rmi.Konto;
import de.willuhn.util.ApplicationException;

/**
* Action fuer die Detail-Ansicht eines Kontos.
*/
public class KontoNew implements Action
{

  /**
   * Erwartet ein Objekt vom Typ <code>Konto</code> im Context.
   * @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object)
   */
  public void handleAction(Object context) throws ApplicationException
  {
    Konto k = null;
    if (context instanceof Konto)
    {
      k = (Konto) context;
    }
   
    GUI.startView(de.willuhn.jameica.hbci.gui.views.KontoNew.class,k);
  }

}


/**********************************************************************
* $Log: KontoNew.java,v $
* Revision 1.5  2005/11/07 18:51:28  willuhn
* *** empty log message ***
*
* Revision 1.4  2005/03/31 23:05:46  web0
* @N geaenderte Startseite
* @N klickbare Links
*
* Revision 1.3  2005/01/19 00:16:04  willuhn
* @N Lastschriften
*
* Revision 1.2  2004/11/13 17:12:14  willuhn
* *** empty log message ***
*
* Revision 1.1  2004/11/13 17:02:04  willuhn
* @N Bearbeiten des Zahlungsturnus
*
* Revision 1.1  2004/10/18 23:38:17  willuhn
* @C Refactoring
* @C Aufloesung der Listener und Ersatz gegen Actions
*
**********************************************************************/
TOP

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

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.