[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-04-30 21:06:55
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit In directory usw-pr-cvs1:/tmp/cvs-serv3337/libraries/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: Pretty print source code Index: CopyAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CopyAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CopyAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- CopyAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class CopyAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); *************** *** 34,38 **** this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Copy24.gif"); } } --- 36,40 ---- this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Copy16.gif"); } } Index: CutAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/CutAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CutAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- CutAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class CutAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); *************** *** 34,38 **** this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Cut24.gif"); } } --- 36,40 ---- this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Cut16.gif"); } } Index: DeleteSelectedAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeleteSelectedAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DeleteSelectedAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- DeleteSelectedAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class DeleteSelectedAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); Index: DeselectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/DeselectAllAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DeselectAllAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- DeselectAllAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class DeselectAllAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); Index: PasteAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/PasteAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PasteAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- PasteAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class PasteAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); *************** *** 34,38 **** this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Paste24.gif"); } } --- 36,40 ---- this.setMenu("action.edit"); this.setToolBar(true); ! this.setIcon("/toolbarButtonGraphics/general/Paste16.gif"); } } Index: SelectAllAction.java =================================================================== RCS file: /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit/SelectAllAction.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SelectAllAction.java 18 Apr 2002 21:09:44 -0000 1.1 --- SelectAllAction.java 30 Apr 2002 21:06:52 -0000 1.2 *************** *** 15,24 **** * Description of the Class * ! * @author laurent * @created 29 décembre 2001 * @todo Javadoc to complete */ public class SelectAllAction extends CommandAction { private final static ResourceBundle res = ResourceBundle.getBundle("action"); --- 15,26 ---- * 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"); |