[Ejtools-cvs] CVS: libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit CopyAction.java,1
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-05 20:10:00
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit In directory usw-pr-cvs1:/tmp/cvs-serv7792/adwt/src/main/net/sourceforge/ejtools/awt/action/edit Modified Files: CopyAction.java CutAction.java DeleteSelectedAction.java DeselectAllAction.java PasteAction.java SelectAllAction.java Log Message: Add some JavaDocs Index: CopyAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CopyAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CopyAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- CopyAction.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 CopyAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CopyAction object * ! * @param command Description of Parameter */ public CopyAction(Command command) --- 13,38 ---- /** ! * Regular "Copy" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Copy" menu item ! * <li>- a "Copy" toolbar button ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CopyAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CopyAction object * ! * @param command Description of Parameter */ public CopyAction(Command command) Index: CutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CutAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CutAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- CutAction.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 CutAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CutAction object * ! * @param command Description of Parameter */ public CutAction(Command command) --- 13,38 ---- /** ! * Regular "Cut" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Cut" menu item ! * <li>- a "Cut" toolbar button ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class CutAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the CutAction object * ! * @param command Description of Parameter */ public CutAction(Command command) Index: DeleteSelectedAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeleteSelectedAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DeleteSelectedAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- DeleteSelectedAction.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 DeleteSelectedAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the DeleteSelectedAction object * ! * @param command Description of Parameter */ public DeleteSelectedAction(Command command) --- 13,37 ---- /** ! * Regular "DeleteSelected" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "DeleteSelected" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class DeleteSelectedAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the DeleteSelectedAction object * ! * @param command Description of Parameter */ public DeleteSelectedAction(Command command) Index: DeselectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeselectAllAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DeselectAllAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- DeselectAllAction.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 DeselectAllAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the DeselectAllAction object * ! * @param command Description of Parameter */ public DeselectAllAction(Command command) --- 13,37 ---- /** ! * Regular "DeselectAll" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "DeselectAll" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class DeselectAllAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the DeselectAllAction object * ! * @param command Description of Parameter */ public DeselectAllAction(Command command) Index: PasteAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/PasteAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PasteAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- PasteAction.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 PasteAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the PasteAction object * ! * @param command Description of Parameter */ public PasteAction(Command command) --- 13,38 ---- /** ! * Regular "Paste" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "Paste" menu item ! * <li>- a "Paste" toolbar button ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class PasteAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the PasteAction object * ! * @param command Description of Parameter */ public PasteAction(Command command) Index: SelectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/SelectAllAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SelectAllAction.java 30 Apr 2002 21:06:52 -0000 1.2 --- SelectAllAction.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 SelectAllAction extends CommandAction { ! /** Description of the Field */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the SelectAllAction object * ! * @param command Description of Parameter */ public SelectAllAction(Command command) --- 13,37 ---- /** ! * Regular "SelectAll" Action that provides : ! * <ul> ! * <li>- a "Edit" menu if it doesn't exist ! * <li>- a "SelectAll" menu item ! * </ul> * ! * @author letiemble ! * @created 29 décembre 2001 ! * @version $Revision$ ! * @todo Javadoc to complete */ public class SelectAllAction extends CommandAction { ! /** Bundle for I18N */ private final static ResourceBundle res = ResourceBundle.getBundle("action"); /** ! * Constructor for the SelectAllAction object * ! * @param command Description of Parameter */ public SelectAllAction(Command command) |