001: /*
002: Very Quick Wiki - WikiWikiWeb clone
003: Copyright (C) 2001-2002 Gareth Cronin
004:
005: This program is free software; you can redistribute it and/or modify
006: it under the terms of the latest version of the GNU Lesser General
007: Public License as published by the Free Software Foundation;
008:
009: This program is distributed in the hope that it will be useful,
010: but WITHOUT ANY WARRANTY; without even the implied warranty of
011: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
012: GNU Lesser General Public License for more details.
013:
014: You should have received a copy of the GNU Lesser General Public License
015: along with this program (gpl.txt); if not, write to the Free Software
016: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
017: */
018: package vqwiki.servlets.beans;
019:
020: /**
021: * Bean containing results for a statistic page
022: *
023: * This class was created on 09:34:30 19.07.2003
024: *
025: * @author $Author: wrh2 $
026: */
027: public class StatisticsMonthBean {
028:
029: private String name = null;
030: private String changes = null;
031: private String pages = null;
032: private String ratio = null;
033:
034: /**
035: * @return
036: */
037: public String getChanges() {
038: return changes;
039: }
040:
041: /**
042: * @return
043: */
044: public String getName() {
045: return name;
046: }
047:
048: /**
049: * @param string
050: */
051: public void setChanges(String string) {
052: changes = string;
053: }
054:
055: /**
056: * @param string
057: */
058: public void setName(String string) {
059: name = string;
060: }
061:
062: /**
063: * @return
064: */
065: public String getPages() {
066: return pages;
067: }
068:
069: /**
070: * @return
071: */
072: public String getRatio() {
073: return ratio;
074: }
075:
076: /**
077: * @param string
078: */
079: public void setPages(String string) {
080: pages = string;
081: }
082:
083: /**
084: * @param string
085: */
086: public void setRatio(String string) {
087: ratio = string;
088: }
089: }
090:
091: /*
092: * Log:
093: *
094: * $Log$
095: * Revision 1.3 2006/04/19 23:55:16 wrh2
096: * Coding style updates (VQW-73).
097: *
098: * Revision 1.2 2003/10/05 05:07:32 garethc
099: * fixes and admin file encoding option + merge with contributions
100: *
101: * Revision 1.1 2003/07/19 13:22:59 mrgadget4711
102: * ADD: Statistic capabilities
103: *
104: * ------------END------------
105: */
|