KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Raptor > listeners > createNewPlugin_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
22 import Raptor.model.*;
23
24 /**
25  * @author Dirk
26  *
27  * date: 03.03.2004
28  * project: WiSer-Builder
29  *
30  * <p>
31  * ...
32  * </p>
33  */

34 public class createNewPlugin_li implements base_guiListener
35 {
36
37     /**
38      *
39      */

40     public createNewPlugin_li()
41     {
42         super();
43     }
44
45     /**
46          * <p>
47          * Does...
48          * </p><p>
49          *
50          * @return a Type with
51          * </p><p>
52          * @param
53          * </p>
54          */

55     public void pcmf_execListener(base_guiObj xParam) throws Exception JavaDoc
56     {
57     base_appl_if l_appl = xParam.pcmf_getAppl();
58     raptor_mainModel l_model = (raptor_mainModel)l_appl.pcmf_getGuiObj().pcmf_getModel();
59
60     l_model.getPem_settings().pcmf_newPlugin();
61     }
62 }
63
Popular Tags