KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > Raptor > listeners > closeSepPreview_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 19.11.2004
12  *
13  * date: 19.11.2004
14  * project:
15  *
16  * *******************************************************************************/

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

32 public class closeSepPreview_li implements base_guiListener
33 {
34     /**
35          * <p>
36          * Does...
37          * </p><p>
38          *
39          * @return a Type with
40          * </p><p>
41          * @param
42          * </p>
43          */

44     public void pcmf_execListener(base_guiObj xParam) throws Exception JavaDoc
45     {
46     if (base_dialog_if.DIALOG_CLOSED.equals(xParam.pcmf_getValue()))
47     {
48       base_guiObj l_std = (base_guiObj)base_registredObject.pcmf_getObjByName("sepViewCheck");
49       l_std.pcmf_setValue(base_checkBox_if.NOTCHECKED);
50       l_std.pcmf_dispatchEvent();
51     }
52     }
53 }
54
Popular Tags