[Ejtools-cvs] CVS: libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window CascadeAction.j
Brought to you by:
letiemble
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window In directory usw-pr-cvs1:/tmp/cvs-serv7792/adwt/src/main/net/sourceforge/ejtools/awt/action/window Modified Files: CascadeAction.java CloseAction.java CloseAllAction.java InternalFrameAction.java TileAction.java Log Message: Add some JavaDocs Index: CascadeAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CascadeAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CascadeAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- CascadeAction.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 CascadeAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CascadeAction object * ! * @param command Description of Parameter */ public CascadeAction(Command command) --- 13,37 ---- /** ! * Regular "Cascade windows" Action that provides : ! * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Cascade windows" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CascadeAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CascadeAction object * ! * @param command Description of Parameter */ public CascadeAction(Command command) Index: CloseAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CloseAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CloseAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- CloseAction.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 CloseAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CloseAction object * ! * @param command Description of Parameter */ public CloseAction(Command command) --- 13,37 ---- /** ! * Regular "Close active window" Action that provides : ! * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Close active window" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CloseAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CloseAction object * ! * @param command Description of Parameter */ public CloseAction(Command command) Index: CloseAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/CloseAllAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CloseAllAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- CloseAllAction.java 5 May 2002 20:09:56 -0000 1.3 *************** *** 14,34 **** /** ! * Description of the Class * ! * @author letiemble ! * @created 11 janvier 2002 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CloseAllAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CascadeAction object * ! * @param command Description of Parameter */ public CloseAllAction(Command command) --- 14,38 ---- /** ! * Regular "Close all windows" Action that provides : ! * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Close all windows" menu item ! * </ul> * ! * @author letiemble ! * @created 11 janvier 2002 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CloseAllAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CascadeAction object * ! * @param command Description of Parameter */ public CloseAllAction(Command command) Index: InternalFrameAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/InternalFrameAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** InternalFrameAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- InternalFrameAction.java 5 May 2002 20:09:56 -0000 1.3 *************** *** 16,36 **** /** ! * Description of the Class * ! * @author letiemble ! * @created 11 janvier 2002 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class InternalFrameAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the InternalFrameAction object * ! * @param command Description of Parameter */ public InternalFrameAction(Command command) --- 16,40 ---- /** ! * Regular spacer for the title of a window that provides : ! * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "N/A" menu item replaced by the title of the window ! * </ul> * ! * @author letiemble ! * @created 11 janvier 2002 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class InternalFrameAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the InternalFrameAction object * ! * @param command Description of Parameter */ public InternalFrameAction(Command command) *************** *** 42,48 **** /** ! * Gets the menuItem attribute of the InternalFrameAction object * ! * @return The menuItem value */ public JMenuItem getMenuItem() --- 46,52 ---- /** ! * Gets the menuItem attribute of the InternalFrameAction object * ! * @return The menuItem value */ public JMenuItem getMenuItem() Index: TileAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/window/TileAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TileAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- TileAction.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 TileAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the TileAction object * ! * @param command Description of Parameter */ public TileAction(Command command) --- 13,37 ---- /** ! * Regular "Tile windows" Action that provides : ! * <ul> ! * <li>- a "Windows" menu if it doesn't exist ! * <li>- a "Tile windows" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class TileAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the TileAction object * ! * @param command Description of Parameter */ public TileAction(Command command) |