KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > modules > base > PubBaseBean


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

5
6 package com.raptus.owxv3.modules.base;
7
8 import com.raptus.owxv3.api.OmniaWebBean;
9
10 /**
11  *
12  * <hr>
13  * <table width="100%" border="0">
14  * <tr>
15  * <td width="24%"><b>Filename</b></td><td width="76%">PubBaseBean.java</td>
16  * </tr>
17  * <tr>
18  * <td width="24%"><b>Author</b></td><td width="76%">REEA</td>
19  * </tr>
20  * <tr>
21  * <td width="24%"><b>Date</b></td><td width="76%">08th of July 2002</td>
22  * </tr>
23  * </table>
24  * <hr>
25  * <table width="100%" border="0">
26  * <tr>
27  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
28  * </tr>
29  * </table>
30  * <hr>
31  */

32
33
34 public class PubBaseBean extends OmniaWebBean
35 {
36     /**
37      *The entry that was loaded by the PubBaseSingleEntryLoader
38      */

39     protected PubBaseEntry entry;
40     
41     public void setPubBaseEntry(PubBaseEntry entry)
42     {
43         this.entry=entry;
44     }
45     public PubBaseEntry getPubBaseEntry()
46     {
47         return entry;
48     }
49 }
50
Popular Tags