Update of /cvsroot/ejtools/applications/jndi.browser/src/main/org/ejtools/jndi/browser/action
In directory sc8-pr-cvs1:/tmp/cvs-serv17169/jndi.browser/src/main/org/ejtools/jndi/browser/action
Modified Files:
SelectFactoryAction.java
Log Message:
Address Todo #755528
Address Todo #800902
Index: SelectFactoryAction.java
===================================================================
RCS file: /cvsroot/ejtools/applications/jndi.browser/src/main/org/ejtools/jndi/browser/action/SelectFactoryAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SelectFactoryAction.java 3 Mar 2003 20:34:49 -0000 1.2
--- SelectFactoryAction.java 27 Nov 2003 01:30:28 -0000 1.3
***************
*** 1,39 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jndi.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Custom CommandAction to allow the selection of the default QueueConnectionFactory or the default TopicConnectionFactory.
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! */
! public class SelectFactoryAction extends CommandAction
! {
! /** Bundle for I18N */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jndi.browser.Resources");
!
!
! /**
! * Build the SelectFactoryAction with the given key
! *
! * @param key The I18N key to use
! * @param command The Command associated with this Action
! */
! public SelectFactoryAction(String key, Command command)
! {
! super(command, resources, key);
! this.setMenu("action.options");
! }
! }
!
--- 1,39 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.jndi.browser.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Custom CommandAction to allow the selection of the default QueueConnectionFactory or the default TopicConnectionFactory.
! *
! * @author letiemble
! * @created 29 décembre 2001
! * @version $Revision$
! */
! public class SelectFactoryAction extends CommandAction
! {
! /** Bundle for I18N */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.jndi.browser.Resources");
!
!
! /**
! * Build the SelectFactoryAction with the given key
! *
! * @param key The I18N key to use
! * @param command The Command associated with this Action
! */
! public SelectFactoryAction(String key, Command command)
! {
! super(command, resources, key);
! this.setMenu("action.options");
! }
! }
!
|