View Javadoc
1   /******************************************************************************
2    * ProfileSelectorNotifier.java - Notify the implementer when a different profile is selected.
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:10  dick
16   * Prettier cvs link in the javadoc.
17   *
18   * Revision 1.2  2009/01/07 20:02:49  dick
19   * Javadoc.
20   *
21   * Revision 1.1  2009/01/07 08:35:58  dick
22   * Notify the implementer when a different profile is selected.
23   *
24   */
25  package com.buckosoft.fibs.BuckoFIBS.gui.account;
26  
27  /** Notify the implementer when a different profile is selected. 
28   * @author Dick Balaska
29   * @since 2009/01/06
30   * @version $Revision$ <br> $Date$
31   * @see <a href="http://cvs.buckosoft.com/Projects/BuckoFIBS/BuckoFIBS/src/com/buckosoft/fibs/BuckoFIBS/gui/account/ProfileSelectorNotifier.java">cvs ProfileSelectorNotifier.java</a>
32   */
33  public interface ProfileSelectorNotifier {
34  	/** Notify the implementer when a different profile is selected.
35  	 * This is so the containing dialog can update his widgets.
36  	 */
37  	void profileChanged();
38  }