KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > modules > submitter > EASubmitterListEntry


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

5
6 package com.raptus.owxv3.modules.submitter;
7
8 import com.raptus.owxv3.modules.base.EABaseListEntry;
9
10 /**
11  *
12  * <hr>
13  * <table width="100%" border="0">
14  * <tr>
15  * <td width="24%"><b>Filename</b></td><td width="76%">EASubmitterListEntry.java</td>
16  * </tr>
17  * <tr>
18  * <td width="24%"><b>Author</b></td><td width="76%">Guy Zuercher (gzuercher@raptus.com)</td>
19  * </tr>
20  * <tr>
21  * <td width="24%"><b>Date</b></td><td width="76%">16th of September 2003</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 public class EASubmitterListEntry extends Object JavaDoc
34 {
35     /**
36      *
37      */

38     protected String JavaDoc vmtitle = null;
39     
40     /**
41      *
42      */

43     protected String JavaDoc listpart = null;
44     
45     /**
46      *
47      */

48     public String JavaDoc getTitle() { return vmtitle; }
49     public void setTitle(String JavaDoc vmt) { this.vmtitle = vmt; }
50     
51     /**
52      *
53      */

54     public String JavaDoc getListpart() { return listpart; }
55     public void setListpart(String JavaDoc lp) { this.listpart = lp; }
56     
57 }
58
59 // eof
60
Popular Tags