KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > browser > action > CreateMBeanAction


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

12
13 package org.ejtools.jmx.browser.action;
14
15
16
17 import java.util.ResourceBundle JavaDoc;
18
19
20
21 import org.ejtools.adwt.action.Command;
22
23 import org.ejtools.adwt.action.CommandAction;
24
25
26
27 /**
28
29  * Description of the Class
30
31  *
32
33  * @author letiemble
34
35  * @created 29 décembre 2001
36
37  * @version $Revision: 1.6 $
38
39  * @todo Javadoc to complete
40
41  */

42
43 public class CreateMBeanAction extends CommandAction
44
45 {
46
47    /** Description of the Field */
48
49    private static ResourceBundle JavaDoc resources = ResourceBundle.getBundle("org.ejtools.jmx.browser.Resources");
50
51
52
53
54
55    /**
56
57     * Constructor for the CopyAction object
58
59     *
60
61     * @param command Description of Parameter
62
63     */

64
65    public CreateMBeanAction(Command command)
66
67    {
68
69       super(command, resources, "action.action.create");
70
71       this.setMenu("action.action");
72
73       this.setToolBar(true);
74
75       this.setSmallIcon("/toolbarButtonGraphics/development/EJBAdd16.gif");
76
77       this.setIcon("/toolbarButtonGraphics/development/EJBAdd24.gif");
78
79    }
80
81 }
82
83
84
85
Popular Tags