KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Raptor > listeners > cutNode_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, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * Dirk von der Weiden - initial API and implementation
10  *
11  * Created on 30.10.2004
12  *
13  * date: 30.10.2004
14  * project:
15  *
16  * *******************************************************************************/

17 package Raptor.listeners;
18
19 import Jmc.baseGui.*;
20 import Jmc.baseTools.*;
21
22 /**
23  * @author Dirk
24  *
25  * date: 30.10.2004
26  *
27  * <p>
28  * Purpose:
29  * </p>
30  */

31 public class cutNode_li implements base_guiListener
32 {
33     public void pcmf_execListener(base_guiObj xParam) throws Exception JavaDoc
34     {
35     base_guiObj l_sPar = (base_guiObj)base_registredObject.pcmf_getObjByName("showParBut");
36     base_guiObj l_dPar = (base_guiObj)base_registredObject.pcmf_getObjByName("delParBut");
37     
38     l_sPar.pcmf_dispatchEvent();
39     l_dPar.pcmf_dispatchEvent();
40     }
41
42 }
43
Popular Tags