Make internal variable private
[proteocache.git] / datadb / compbio / cassandra / DataBase.java
1 package compbio.cassandra;
2
3 import java.util.List;
4 import java.util.ArrayList;
5 import java.util.Collections;
6
7 public class DataBase {
8         private String date;
9         private int total;
10         private int totalId;
11         private String id;
12         private String prot;
13         private String jpred;
14         private List<String> subProt;
15         private List<Integer> timeRez;
16
17         public DataBase() {
18         }
19
20         public DataBase(String dat, int total) {
21                 this.date = dat;
22                 this.total = total;
23         }
24
25         public void setDate(String dat) {
26                 this.date = dat;
27         }
28
29         public String getDate() {
30                 return date;
31         }
32
33         public void setTotal(int tot) {
34                 this.total = tot;
35         }
36
37         public int getTotal() {
38                 return total;
39         }
40
41         public void setTotalId(int totId) {
42                 this.totalId = totId;
43         }
44
45         public int getTotalId() {
46                 return totalId;
47         }
48
49         public void setProt(String prot) {
50                 this.prot = prot;
51         }
52
53         public String getProt() {
54                 return prot;
55         }
56
57         public void setJpred(String jpred) {
58                 this.jpred = jpred;
59         }
60
61         public String getJpred() {
62                 return jpred;
63         }
64
65         public void setId(String id) {
66                 this.id = id;
67         }
68
69         public String getId() {
70                 return id;
71         }
72
73         public void setSubProt(List<String> subProt) {
74                 this.subProt = subProt;
75         }
76
77         public List<String> getSubProt() {
78                 return subProt;
79         }
80
81         public void setTimeRez(List<Integer> timeRez) {
82                 this.timeRez = timeRez;
83         }
84
85         public List<Integer> getTimeRez() {
86                 return timeRez;
87         }
88
89 }