KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Raptor > listeners > plSwitch_li


1 /*******************************************************************************
2  * Copyright (c) 2004, Dirk von der Weiden.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution.
6  *
7  * Contributors:
8  * Dirk von der Weiden - initial API and implementation
9  *
10  * Created on 04.04.2004
11  *
12  * date: 04.04.2004
13  * project: WiSer Builder
14  *
15  *******************************************************************************/

16
17 package Raptor.listeners;
18
19 import Jmc.baseGui.*;
20 import Jmc.commonGui.*;
21 import Jmc.baseTools.*;
22
23 import Raptor.model.*;
24
25 /**
26  * @author Dirk
27  *
28  * date: 02.03.2004
29  * project: WiSer-Builder
30  *
31  * <p>
32  * ...
33  * </p>
34  */

35 public class plSwitch_li implements base_guiListener
36 {
37     /**
38          * <p>
39          * Does...
40          * </p><p>
41          *
42          * @return a Type with
43          * </p><p>
44          * @param
45          * </p>
46          */

47     public void pcmf_execListener(base_guiObj xParam) throws Exception JavaDoc
48     {
49     base_appl_if l_appl = xParam.pcmf_getAppl();
50     raptor_mainModel l_model = (raptor_mainModel)l_appl.pcmf_getGuiObj().pcmf_getModel();
51
52     l_model.getPem_settings().setPem_actPlugin(((base_comboBox_if)base_registredObject.pcmf_getObjByName("plAll")).pcmf_getValue().toString());
53     l_model.getPem_settings().pcmf_showPlDetail();
54   }
55 }
56
Popular Tags