[Ejtools-cvs] applications/management.browser/src/main/org/ejtools/management/browser/action ShowNot
Brought to you by:
letiemble
From: <let...@us...> - 2003-12-14 08:40:52
|
Update of /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/action In directory sc8-pr-cvs1:/tmp/cvs-serv21061/management.browser/src/main/org/ejtools/management/browser/action Modified Files: ShowNotificationsAction.java Log Message: Add more javadocs. Adjust workspace persistence. Index: ShowNotificationsAction.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/action/ShowNotificationsAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ShowNotificationsAction.java 27 Nov 2003 01:39:47 -0000 1.3 --- ShowNotificationsAction.java 13 Dec 2003 22:31:56 -0000 1.4 *************** *** 1,41 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.management.browser.action; ! ! import java.util.ResourceBundle; ! ! import org.ejtools.adwt.action.Command; ! import org.ejtools.adwt.action.CommandAction; ! ! /** ! * Description of the Class ! * ! * @author Laurent Etiemble ! * @version $Revision$ ! * @todo Javadoc to complete ! */ ! public class ShowNotificationsAction extends CommandAction ! { ! /** Description of the Field */ ! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.management.browser.Resources"); ! ! ! /** ! * Constructor for the CopyAction object ! * ! * @param command Description of Parameter ! */ ! public ShowNotificationsAction(Command command) ! { ! super(command, resources, "action.view.notifications"); ! this.setMenu("action.view"); ! this.setToolBar(true); ! this.setSmallIcon("/toolbarButtonGraphics/general/History16.gif"); ! this.setIcon("/toolbarButtonGraphics/general/History24.gif"); ! } ! } ! --- 1,41 ---- ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.management.browser.action; ! ! import java.util.ResourceBundle; ! ! import org.ejtools.adwt.action.Command; ! import org.ejtools.adwt.action.CommandAction; ! ! /** ! * Description of the Class ! * ! * @author Laurent Etiemble ! * @version $Revision$ ! * @todo Javadoc to complete ! */ ! public class ShowNotificationsAction extends CommandAction ! { ! /** Description of the Field */ ! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.management.browser.Resources"); ! ! ! /** ! * Constructor for the CopyAction object ! * ! * @param command Description of Parameter ! */ ! public ShowNotificationsAction(Command command) ! { ! super(command, resources, "action.view.notifications"); ! this.setMenu("action.view"); ! this.setToolBar(true); ! this.setSmallIcon("/toolbarButtonGraphics/general/History16.gif"); ! this.setIcon("/toolbarButtonGraphics/general/History24.gif"); ! } ! } ! |