KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > api > components > CmpPreviewAction


1 /*
2  * eAdmin/OWX
3  * Copyright (C) 1996-2003 OWX-Project Team <owx-team@gmx.net>
4  */

5
6 package com.raptus.owxv3.api.components;
7
8 import javax.servlet.http.HttpServletRequest JavaDoc;
9
10 //import com.raptus.owxv3.modules.base.BaseObject;
11

12 /**
13  *
14  * <hr>
15  * <table width="100%" border="0">
16  * <tr>
17  * <td width="24%"><b>Filename</b></td><td width="76%">CmpEntryAction.java</td>
18  * </tr>
19  * <tr>
20  * <td width="24%"><b>Author</b></td><td width="76%">Guy Zürcher (gzuercher@raptus.com)</td>
21  * </tr>
22  * <tr>
23  * <td width="24%"><b>Date</b></td><td width="76%">28th of June 2001</td>
24  * </tr>
25  * </table>
26  * <hr>
27  * <table width="100%" border="0">
28  * <tr>
29  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
30  * </tr>
31  * </table>
32  * <hr>
33  */

34 public class CmpPreviewAction extends ComponentAction
35 {
36     /**
37      *
38      */

39     public void dispatchComponent(HttpServletRequest JavaDoc request, ComponentBean cbean)
40     {
41        /* VModuleManager vmm = VModuleManager.getInstance();
42         VModule vm = vmm.getVModule(((CmpPreviewBean) cbean).getVModule());
43         NewsObject nwObj = new NewsObject( vm, ((CmpPreviewBean) cbean).getCurrLocale() );
44         nwObj.loadPreviewData(cbean.getContainer(), (CmpPreviewBean) cbean);
45         */

46     }
47
48 }
49
50 // eof
51
Popular Tags