Update of /cvsroot/ejtools/applications/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser
In directory usw-pr-cvs1:/tmp/cvs-serv30470/jndi.browser/src/main/net/sourceforge/ejtools/jndibrowser
Added Files:
SelectFactoryAction.java
Log Message:
Initial Import
--- NEW FILE: SelectFactoryAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.jndibrowser;
// Standard Imports
import java.util.ResourceBundle;
// Other Imports
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 SelectFactoryAction extends CommandAction
{
/** Description of the Field */
private final static ResourceBundle res = ResourceBundle.getBundle("ApplicationResources");
/**
* Constructor for the NewAction object
*
* @param command Description of Parameter
* @param key Description of Parameter
*/
public SelectFactoryAction(String key, Command command)
{
super(command, res, key);
this.setMenu("action.options");
}
}
|