01: /*
02: Very Quick Wiki - WikiWikiWeb clone
03: Copyright (C) 2001-2002 Gareth Cronin
04:
05: This program is free software; you can redistribute it and/or modify
06: it under the terms of the latest version of the GNU Lesser General
07: Public License as published by the Free Software Foundation;
08:
09: This program is distributed in the hope that it will be useful,
10: but WITHOUT ANY WARRANTY; without even the implied warranty of
11: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: GNU Lesser General Public License for more details.
13:
14: You should have received a copy of the GNU Lesser General Public License
15: along with this program (gpl.txt); if not, write to the Free Software
16: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17: */
18: package vqwiki.servlets.beans;
19:
20: /**
21: * Bean containing results for a statistic page
22: *
23: * This class was created on 09:34:30 19.07.2003
24: *
25: * @author $Author: wrh2 $
26: */
27: public class StatisticsAuthorBean {
28:
29: private String name = null;
30: private String changes = null;
31:
32: /**
33: * @return
34: */
35: public String getChanges() {
36: return changes;
37: }
38:
39: /**
40: * @return
41: */
42: public String getName() {
43: return name;
44: }
45:
46: /**
47: * @param string
48: */
49: public void setChanges(String string) {
50: changes = string;
51: }
52:
53: /**
54: * @param string
55: */
56: public void setName(String string) {
57: name = string;
58: }
59: }
60:
61: /*
62: * Log:
63: *
64: * $Log$
65: * Revision 1.3 2006/04/19 23:55:16 wrh2
66: * Coding style updates (VQW-73).
67: *
68: * Revision 1.2 2003/10/05 05:07:32 garethc
69: * fixes and admin file encoding option + merge with contributions
70: *
71: * Revision 1.1 2003/07/19 13:22:59 mrgadget4711
72: * ADD: Statistic capabilities
73: *
74: * ------------END------------
75: */
|