KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > snipsnap > versioning > VersionInfo


1 /*
2  * This file is part of "SnipSnap Wiki/Weblog".
3  *
4  * Copyright (c) 2002 Stephan J. Schmidt, Matthias L. Jugel
5  * All Rights Reserved.
6  *
7  * Please visit http://snipsnap.org/ for updates and contact.
8  *
9  * --LICENSE NOTICE--
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  * --LICENSE NOTICE--
24  */

25
26 package org.snipsnap.versioning;
27
28 import java.sql.Timestamp JavaDoc;
29
30 /**
31  * Information about a Snip version
32  *
33  * @author Stephan J. Schmidt
34  * @version $Id: VersionInfo.java 1257 2003-12-11 13:36:55Z leo $
35  */

36
37 public class VersionInfo {
38   private int version;
39   private String JavaDoc mUser;
40   private Timestamp JavaDoc mTime;
41   private long size;
42   private int viewCount;
43
44   public int getVersion() {
45     return version;
46   }
47
48   public void setVersion(int version) {
49     this.version = version;
50   }
51
52   public String JavaDoc getMUser() {
53     return mUser;
54   }
55
56   public void setMUser(String JavaDoc mUser) {
57     this.mUser = mUser;
58   }
59
60   public Timestamp JavaDoc getMTime() {
61     return mTime;
62   }
63
64   public void setMTime(Timestamp JavaDoc mTime) {
65     this.mTime = mTime;
66   }
67
68   public long getSize() {
69     return size;
70   }
71
72   public void setSize(long size) {
73     this.size = size;
74   }
75
76   public int getViewCount() {
77     return viewCount;
78   }
79
80   public void setViewCount(int viewCount) {
81     this.viewCount = viewCount;
82   }
83 }
84
Popular Tags