Update of /cvsroot/ejtools/libraries/adwt/src/main/net/sourceforge/ejtools/awt/action/help
In directory usw-pr-cvs1:/tmp/cvs-serv9585/help
Added Files:
AboutAction.java HelpOnLineAction.java TOTDAction.java
Log Message:
Initial Import
--- NEW FILE: AboutAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.awt.action.help;
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 AboutAction extends CommandAction
{
private final static ResourceBundle res = ResourceBundle.getBundle("action");
/**
* @param command The exit command that the action should act upon.
*/
public AboutAction(Command command)
{
super(command, res, "action.help.about");
this.setMenu("action.help");
this.setToolBar(true);
this.setIcon("/toolbarButtonGraphics/general/About24.gif");
}
}
--- NEW FILE: HelpOnLineAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.awt.action.help;
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 HelpOnLineAction extends CommandAction
{
private final static ResourceBundle res = ResourceBundle.getBundle("action");
/**
* Constructor for the HelpOnLineAction object
*
* @param command Description of Parameter
*/
public HelpOnLineAction(Command command)
{
super(command, res, "action.help.online");
this.setMenu("action.help");
this.setToolBar(true);
this.setIcon("/toolbarButtonGraphics/general/Help24.gif");
}
}
--- NEW FILE: TOTDAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package net.sourceforge.ejtools.awt.action.help;
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 TOTDAction extends CommandAction
{
private final static ResourceBundle res = ResourceBundle.getBundle("action");
/**
* Constructor for the TOTDAction object
*
* @param command Description of Parameter
*/
public TOTDAction(Command command)
{
super(command, res, "action.help.totd");
this.setMenu("action.help");
this.setToolBar(true);
this.setIcon("/toolbarButtonGraphics/general/TipOfTheDay24.gif");
}
}
|