KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > adwt > action > window > CascadeAction


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.adwt.action.window;
8
9 import java.util.ResourceBundle JavaDoc;
10
11 import org.ejtools.adwt.action.Command;
12 import org.ejtools.adwt.action.CommandAction;
13
14 /**
15  * Description of the Class
16  *
17  * @author Laurent Etiemble
18  * @version $Revision: 1.9 $
19  * @todo Javadoc to complete
20  */

21 public class CascadeAction extends CommandAction
22 {
23     /** Resource Bundle */
24    private static ResourceBundle JavaDoc resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
25
26
27    /**
28     * Constructor for the CascadeAction object
29     *
30     * @param command Description of Parameter
31     */

32    public CascadeAction(Command command)
33    {
34       super(command, resources, "action.window.cascade");
35       this.setMenu("action.window");
36       this.setSmallIcon("/toolbarButtonGraphics/general/CascadeWindows16.gif");
37       this.setIcon("/toolbarButtonGraphics/general/CascadeWindows16.gif");
38    }
39 }
40
41
Popular Tags