[Ejtools-cvs] CVS: libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit CopyAction.java,N
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-18 21:09:53
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/edit In directory usw-pr-cvs1:/tmp/cvs-serv9585/edit Added Files: CopyAction.java CutAction.java DeleteSelectedAction.java DeselectAllAction.java PasteAction.java SelectAllAction.java Log Message: Initial Import --- NEW FILE: CopyAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the CopyAction object * * @param command Description of Parameter */ public CopyAction(Command command) { super(command, res, "action.edit.copy"); this.setMenu("action.edit"); this.setToolBar(true); this.setIcon("/toolbarButtonGraphics/general/Copy24.gif"); } } --- NEW FILE: CutAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the CutAction object * * @param command Description of Parameter */ public CutAction(Command command) { super(command, res, "action.edit.cut"); this.setMenu("action.edit"); this.setToolBar(true); this.setIcon("/toolbarButtonGraphics/general/Cut24.gif"); } } --- NEW FILE: DeleteSelectedAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the DeleteSelectedAction object * * @param command Description of Parameter */ public DeleteSelectedAction(Command command) { super(command, res, "action.edit.delete.selected"); this.setMenu("action.edit"); } } --- NEW FILE: DeselectAllAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the DeselectAllAction object * * @param command Description of Parameter */ public DeselectAllAction(Command command) { super(command, res, "action.edit.deselect.all"); this.setMenu("action.edit"); } } --- NEW FILE: PasteAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the PasteAction object * * @param command Description of Parameter */ public PasteAction(Command command) { super(command, res, "action.edit.paste"); this.setMenu("action.edit"); this.setToolBar(true); this.setIcon("/toolbarButtonGraphics/general/Paste24.gif"); } } --- NEW FILE: SelectAllAction.java --- /* * EJTools, the Enterprise Java Tools * * Distributable under LGPL license. * See terms of license at www.gnu.org. */ package net.sourceforge.ejtools.awt.action.edit; import java.util.ResourceBundle; import net.sourceforge.ejtools.awt.action.Command; import net.sourceforge.ejtools.awt.action.CommandAction; /** * 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"); /** * Constructor for the SelectAllAction object * * @param command Description of Parameter */ public SelectAllAction(Command command) { super(command, res, "action.edit.select.all"); this.setMenu("action.edit"); } } |