[Ejtools-cvs] CVS: libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help AboutAction.java,
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-05 20:09:59
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help In directory usw-pr-cvs1:/tmp/cvs-serv7792/adwt/src/main/net/sourceforge/ejtools/awt/action/help Modified Files: AboutAction.java HelpOnLineAction.java TOTDAction.java Log Message: Add some JavaDocs Index: AboutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/AboutAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AboutAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- AboutAction.java 5 May 2002 20:09:56 -0000 1.3 *************** *** 13,31 **** /** ! * Description of the Class * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class AboutAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * @param command The exit command that the action should act upon. */ public AboutAction(Command command) --- 13,36 ---- /** ! * Regular "About" Action that provides : ! * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "About" menu item ! * <li>- a "About" toolbar button ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class AboutAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * @param command The exit command that the action should act upon. */ public AboutAction(Command command) Index: HelpOnLineAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/HelpOnLineAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** HelpOnLineAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- HelpOnLineAction.java 5 May 2002 20:09:56 -0000 1.3 *************** *** 13,33 **** /** ! * Description of the Class * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class HelpOnLineAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the HelpOnLineAction object * ! * @param command Description of Parameter */ public HelpOnLineAction(Command command) --- 13,37 ---- /** ! * Regular "Help on line" Action that provides : ! * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "Help on line" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class HelpOnLineAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the HelpOnLineAction object * ! * @param command Description of Parameter */ public HelpOnLineAction(Command command) Index: TOTDAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help/TOTDAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TOTDAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- TOTDAction.java 5 May 2002 20:09:56 -0000 1.3 *************** *** 13,33 **** /** ! * Description of the Class * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class TOTDAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the TOTDAction object * ! * @param command Description of Parameter */ public TOTDAction(Command command) --- 13,37 ---- /** ! * Regular "Tip of the Day" Action that provides : ! * <ul> ! * <li>- a "Help" menu if it doesn't exist ! * <li>- a "Tip of the Day" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class TOTDAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the TOTDAction object * ! * @param command Description of Parameter */ public TOTDAction(Command command) |