KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > kelp > common > deployer > DeployButtonListener


1 /*
2  * Enhydra Java Application Server Project
3  *
4  * The contents of this file are subject to the Enhydra Public License
5  * Version 1.1 (the "License"); you may not use this file except in
6  * compliance with the License. You may obtain a copy of the License on
7  * the Enhydra web site ( http://www.enhydra.org/ ).
8  *
9  * Software distributed under the License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11  * the License for the specific terms governing rights and limitations
12  * under the License.
13  *
14  * The Initial Developer of the Enhydra Application Server is Lutris
15  * Technologies, Inc. The Enhydra Application Server and portions created
16  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17  * All Rights Reserved.
18  *
19  * Contributor(s):
20  * Paul Mahar
21  *
22  */

23 package org.enhydra.kelp.common.deployer;
24
25 // ToolBox imports
26
import org.enhydra.tool.common.ButtonPanel;
27
28 // Standard imports
29
import java.awt.Window JavaDoc;
30 import java.awt.event.ActionEvent JavaDoc;
31 import java.awt.event.ActionListener JavaDoc;
32 import java.lang.ref.WeakReference JavaDoc;
33 //
34
public class DeployButtonListener implements ActionListener JavaDoc {
35         private WeakReference JavaDoc ref = null;
36
37         public DeployButtonListener(CoreDeployTool tool) {
38           ref = new WeakReference JavaDoc(tool);
39         }
40
41     public void actionPerformed(ActionEvent JavaDoc event) {
42         String JavaDoc command = event.getActionCommand();
43         if (command.equals(ButtonPanel.COMMAND_BACK)) {
44                 getTool().back();
45         } else if (command.equals(ButtonPanel.COMMAND_NEXT)) {
46                 getTool().next();
47         } else if (command.equals(ButtonPanel.COMMAND_DEPLOY)) {
48                 getTool().deploy();
49         } else if (command.equals(ButtonPanel.COMMAND_CLOSE)) {
50                 getTool().closeWindow();
51         } else if (command.equals(ButtonPanel.COMMAND_HELP)) {
52                 getTool().notifyHelpListeners(event.getSource());
53         } else if (command.equals(ButtonPanel.COMMAND_ABOUT)) {
54                 getTool().showAbout();
55         }
56     }
57
58         private CoreDeployTool getTool() {
59           return (CoreDeployTool) ref.get();
60         }
61
62 }
63
Popular Tags