KickJava   Java API By Example, From Geeks To Geeks.

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

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

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

45     public void pcmf_execListener(base_guiObj xParam) throws Exception JavaDoc
46     {
47     base_guiObj l_obj = (base_guiObj)xParam;
48     base_appl_if l_appl = l_obj.pcmf_getAppl();
49     raptor_mainModel l_model= (raptor_mainModel)l_appl.pcmf_getGuiObj().pcmf_getModel();
50     
51     l_model.pcmf_undo();
52     }
53
54 }
55
Popular Tags