/[projects]/android/MarketStats/src/dk/thoerup/marketstats/AppBean.java
ViewVC logotype

Contents of /android/MarketStats/src/dk/thoerup/marketstats/AppBean.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 950 - (show annotations) (download)
Mon Jul 5 08:18:02 2010 UTC (13 years, 10 months ago) by torben
File size: 822 byte(s)
refactor to jsp views
1 package dk.thoerup.marketstats;
2
3 import java.io.Serializable;
4
5 public class AppBean implements Serializable{
6 private static final long serialVersionUID = 1L;
7
8 public String getId() {
9 return id;
10 }
11
12 public String getTitle() {
13 return title;
14 }
15
16 public String getVersion() {
17 return version;
18 }
19
20 public int getVersionCode() {
21 return versionCode;
22 }
23
24 public String getRating() {
25 return rating;
26 }
27
28 public int getRatingsCount() {
29 return ratingsCount;
30 }
31
32 public String getDownloadsCountText() {
33 return downloadsCountText;
34 }
35 public int getDownloadsCount() {
36 return downloadsCount;
37 }
38
39
40 public String id;
41 public String title;
42 public String version;
43 public int versionCode;
44
45 public int ratingsCount;
46 public String rating;
47
48 public String downloadsCountText;
49 public int downloadsCount;
50 }

  ViewVC Help
Powered by ViewVC 1.1.20