Update of /cvsroot/ejtools/applications/jmx.browser/src/main/org/ejtools/jmx/browser/action
In directory sc8-pr-cvs1:/tmp/cvs-serv13614/jmx.browser/src/main/org/ejtools/jmx/browser/action
Modified Files:
CreateMBeanAction.java ShowNotificationsAction.java
Log Message:
Address Bug #775745
Address Todo #800902
Address Todo #755528
Remove @created tags
Add support for MXJ4 2.0.0 (still beta)
Add support for JXM Remoting through RMI
Index: CreateMBeanAction.java
===================================================================
RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/org/ejtools/jmx/browser/action/CreateMBeanAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** CreateMBeanAction.java 24 Feb 2003 22:02:46 -0000 1.2
--- CreateMBeanAction.java 27 Nov 2003 01:13:06 -0000 1.3
***************
*** 1,42 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jmx.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class CreateMBeanAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jmx.browser.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public CreateMBeanAction(Command command)
! {
! super(command, resources, "action.action.create");
! this.setMenu("action.action");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/development/EJBAdd16.gif");
! this.setIcon("/toolbarButtonGraphics/development/EJBAdd24.gif");
! }
! }
!
--- 1,42 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jmx.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class CreateMBeanAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jmx.browser.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public CreateMBeanAction(Command command)
! {
! super(command, resources, "action.action.create");
! this.setMenu("action.action");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/development/EJBAdd16.gif");
! this.setIcon("/toolbarButtonGraphics/development/EJBAdd24.gif");
! }
! }
!
Index: ShowNotificationsAction.java
===================================================================
RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/org/ejtools/jmx/browser/action/ShowNotificationsAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ShowNotificationsAction.java 24 Feb 2003 22:02:46 -0000 1.2
--- ShowNotificationsAction.java 27 Nov 2003 01:13:06 -0000 1.3
***************
*** 1,42 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jmx.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class ShowNotificationsAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jmx.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,42 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jmx.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class ShowNotificationsAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jmx.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");
! }
! }
!
|