KickJava   Java API By Example, From Geeks To Geeks.

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


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
9 /**
10  *
11  * <hr>
12  * <table width="100%" border="0">
13  * <tr>
14  * <td width="24%"><b>Filename</b></td><td width="76%">ComponentData.java</td>
15  * </tr>
16  * <tr>
17  * <td width="24%"><b>Author</b></td><td width="76%">Guy Zürcher (gzuercher@raptus.com)</td>
18  * </tr>
19  * <tr>
20  * <td width="24%"><b>Date</b></td><td width="76%">5th of July 2001</td>
21  * </tr>
22  * </table>
23  * <hr>
24  * <table width="100%" border="0">
25  * <tr>
26  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
27  * </tr>
28  * </table>
29  * <hr>
30  */

31 public class ComponentData extends Object JavaDoc
32 {
33     /**
34      *
35      */

36     protected String JavaDoc cmpID = null;
37
38     /**
39      *
40      */

41     protected String JavaDoc resources = null;
42
43     /**
44      *
45      */

46     protected String JavaDoc titleKey = null;
47
48     /**
49      *
50      */

51     protected String JavaDoc controller = null;
52
53     /**
54      *
55      */

56     protected String JavaDoc viewer = null;
57
58     /**
59      *
60      */

61     protected String JavaDoc beanClass;
62
63     /**
64      *
65      */

66     public String JavaDoc getID() { return cmpID; }
67     public void setID(String JavaDoc id) { this.cmpID = id; }
68
69     /**
70      *
71      */

72     public String JavaDoc getResources() { return resources; }
73     public void setResources(String JavaDoc res) { this.resources = res; }
74
75     /**
76      *
77      */

78     public String JavaDoc getTitleKey() { return titleKey; }
79     public void setTitleKey(String JavaDoc key) { this.titleKey = key; }
80
81     /**
82      *
83      */

84     public String JavaDoc getController() { return controller; }
85     public void setController(String JavaDoc ctrl) { this.controller = ctrl; }
86
87     /**
88      *
89      */

90     public String JavaDoc getViewer() { return viewer; }
91     public void setViewer(String JavaDoc view) { this.viewer = view; }
92
93     /**
94      *
95      */

96     public String JavaDoc getBeanClass() { return beanClass; }
97     public void setBeanClass(String JavaDoc clazz) { this.beanClass = clazz; }
98
99 }
100
101 // eof
102
Popular Tags