View Javadoc
1   /******************************************************************************
2    * CreateAccountStatusInterface.java - Pass status to the New Account dialog.
3    * $Id$
4    * 
5    * BuckoFIBS - Backgammon by BuckoSoft
6    * Copyright© 2009,2010 - Dick Balaska - BuckoSoft, Corp.
7    * 
8    * $Log$
9    * Revision 1.2  2010/03/03 12:19:49  inim
10   * Moved source to UTF8 encoding from CP1252 encoding. To this end all source files' (c) message was updated to "Copyright© 2009,2010 - Dick Balaska - BuckoSoft, Corp.". This replaces the (c) sign to UTF8, and adds the new year 2010.
11   *
12   * Revision 1.1  2010/02/04 05:57:53  inim
13   * Mavenized project folder layout
14   *
15   * Revision 1.3  2009/01/28 18:15:09  dick
16   * Prettier cvs link in the javadoc.
17   *
18   * Revision 1.2  2009/01/06 08:24:27  dick
19   * Javadoc.
20   *
21   * Revision 1.1  2009/01/06 08:10:07  dick
22   * Pass status to the New Account dialog.
23   *
24   */
25  package com.buckosoft.fibs.BuckoFIBS.gui.account;
26  
27  /** Pass status to the New Account dialog.
28   * We don't just use the dialog because this extracts all of the drawing stuff we don't want. 
29   * @author Dick Balaska
30   * @since 2009/01/05
31   * @version $Revision$ <br> $Date$
32   * @see <a href="http://cvs.buckosoft.com/Projects/BuckoFIBS/BuckoFIBS/src/com/buckosoft/fibs/BuckoFIBS/gui/account/CreateAccountStatusInterface.java">cvs CreateAccountStatusInterface.java</a>
33   */
34  public interface CreateAccountStatusInterface {
35  	/** Display a message in the dialog box
36  	 * @param s The message to display
37  	 */
38  	void setStatus(String s);
39  	
40  	/** Handle a successful registration.
41  	 * (Closes the dialog box).
42  	 */
43  	void onRegisterSuccess();
44  	
45  	/** Handle a failed registration.
46  	 * (disables the create button until something is typed)
47  	 */
48  	void onRegisterFailure();
49  }