KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > explorer > CosTrading > AddServiceTypes


1 /*===========================================================================
2
3 OpenCCM: The Open CORBA Component Model Platform
4 Copyright (C) 2000-2003 INRIA - USTL - LIFL - GOAL
5 Contact: openccm@objectweb.org
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA
21
22 Initial developer(s): Sylvain Leblanc.
23 Contributor(s): ______________________________________.
24
25 ===========================================================================*/

26
27 package org.objectweb.openccm.explorer.CosTrading;
28
29 import java.awt.Component JavaDoc;
30 import java.awt.event.ActionEvent JavaDoc;
31
32 import javax.swing.JOptionPane JavaDoc;
33
34 import org.objectweb.openccm.corba.trader.TypeRepositoryFeed;
35 import org.objectweb.openccm.explorer.CosTrading.gui.AddServiceTypesPanel;
36 import org.objectweb.util.explorer.api.MenuItem;
37 import org.objectweb.util.explorer.api.MenuItemTreeView;
38 import org.objectweb.util.explorer.api.TreeView;
39 import org.omg.CosTradingRepos.ServiceTypeRepository;
40
41 /**
42  * This action adds some service types describe in a Trading Service
43  * Type Descriptor file. <b>Warning</b>: this action only uses the
44  * default OpenCCM reference of a trading service.
45  *
46  * @author <a HREF="mailto:Sylvain.Leblanc@lifl.fr">Sylvain Leblanc</a>
47  * @version 0.1
48  */

49 public class AddServiceTypes
50   implements MenuItem
51 {
52
53     // ==================================================================
54
//
55
// Internal state.
56
//
57
// ==================================================================
58

59     // ==================================================================
60
//
61
// Constructors.
62
//
63
// ==================================================================
64

65     // ==================================================================
66
//
67
// Internal methods.
68
//
69
// ==================================================================
70

71     // ==================================================================
72
//
73
// Public methods.
74
//
75
// ==================================================================
76

77     /* (non-Javadoc)
78      * @see org.objectweb.util.explorer.api.MenuItem#getStatus(org.objectweb.util.explorer.api.TreeView)
79      */

80     public int getStatus(TreeView arg0){
81         return MenuItem.ENABLED_STATUS;
82     }
83
84     /* (non-Javadoc)
85      * @see org.objectweb.util.explorer.api.MenuItem#actionPerformed(org.objectweb.util.explorer.api.MenuItemTreeView)
86      */

87     public void actionPerformed(MenuItemTreeView e) {
88         ServiceTypeRepository parent = (ServiceTypeRepository)e.getSelectedObject();
89
90         AddServiceTypesPanel stp = new AddServiceTypesPanel();
91         
92         ActionEvent JavaDoc ae = (ActionEvent JavaDoc)e.getEvent();
93         
94         int result =
95             JOptionPane.showOptionDialog(
96                 (Component JavaDoc) ae.getSource(),
97                 stp,
98                 "Add trading service types",
99                 JOptionPane.OK_CANCEL_OPTION,
100                 JOptionPane.PLAIN_MESSAGE,
101                 null,
102                 null,
103                 null);
104
105         if (result == 0) {
106             String JavaDoc filename = stp.getFileName();
107             TypeRepositoryFeed trf = new TypeRepositoryFeed();
108             trf.run(new String JavaDoc[] {filename});
109         }
110     }
111 }
112
Popular Tags