Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file
In directory sc8-pr-cvs1:/tmp/cvs-serv8980/adwt/src/main/org/ejtools/adwt/action/file
Added Files:
OpenWorkspaceAction.java SaveAsWorkspaceAction.java
SaveWorkspaceAction.java
Log Message:
Address Todo #755528
Remove @created tags
--- NEW FILE: OpenWorkspaceAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package org.ejtools.adwt.action.file;
import java.util.ResourceBundle;
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.CommandAction;
/**
* Description of the Class
*
* @author letiemble
* @version $Revision: 1.1 $
* @todo Javadoc to complete
*/
public class OpenWorkspaceAction extends CommandAction
{
/** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
/**
* Constructor for the CopyAction object
*
* @param command Description of Parameter
*/
public OpenWorkspaceAction(Command command)
{
super(command, resources, "action.file.open.workspace");
this.setMenu("action.file");
this.setToolBar(true);
this.setSmallIcon("/toolbarButtonGraphics/general/Open16.gif");
this.setIcon("/toolbarButtonGraphics/general/Open24.gif");
}
}
--- NEW FILE: SaveAsWorkspaceAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package org.ejtools.adwt.action.file;
import java.util.ResourceBundle;
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.CommandAction;
/**
* Description of the Class
*
* @author letiemble
* @version $Revision: 1.1 $
* @todo Javadoc to complete
*/
public class SaveAsWorkspaceAction extends CommandAction
{
/** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
/**
* Constructor for the CopyAction object
*
* @param command Description of Parameter
*/
public SaveAsWorkspaceAction(Command command)
{
super(command, resources, "action.file.save.workspace.as");
this.setMenu("action.file");
}
}
--- NEW FILE: SaveWorkspaceAction.java ---
/*
* EJTools, the Enterprise Java Tools
*
* Distributable under LGPL license.
* See terms of license at www.gnu.org.
*/
package org.ejtools.adwt.action.file;
import java.util.ResourceBundle;
import org.ejtools.adwt.action.Command;
import org.ejtools.adwt.action.CommandAction;
/**
* Description of the Class
*
* @author letiemble
* @version $Revision: 1.1 $
* @todo Javadoc to complete
*/
public class SaveWorkspaceAction extends CommandAction
{
/** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
/**
* Constructor for the CopyAction object
*
* @param command Description of Parameter
*/
public SaveWorkspaceAction(Command command)
{
super(command, resources, "action.file.save.workspace");
this.setMenu("action.file");
this.setToolBar(true);
this.setSmallIcon("/toolbarButtonGraphics/general/Save16.gif");
this.setIcon("/toolbarButtonGraphics/general/Save24.gif");
}
}
|