2f4eca1c8df437792f55cfcc04e8cc245a100e2f
[JavaForFun] /
1 package name.gumartinm.weather.information.fragment.overview;
2
3 import android.graphics.Bitmap;
4
5 public class OverviewEntry {
6     private final String dateName;
7     private final String dateNumber;
8     private final String maxTemp;
9     private final String minTemp;
10     private final Bitmap picture;
11
12     public OverviewEntry(final String dateName, final String dateNumber,
13             final String maxTemp, final String minTemp,
14             final Bitmap picture) {
15         this.dateName = dateName;
16         this.dateNumber = dateNumber;
17         this.maxTemp = maxTemp;
18         this.minTemp = minTemp;
19         this.picture = picture;
20     }
21
22     public String getDateName() {
23         return this.dateName;
24     }
25
26     public String getDateNumber() {
27         return this.dateNumber;
28     }
29
30     public String getMaxTemp() {
31         return this.maxTemp;
32     }
33
34     public String getMinTemp() {
35         return this.minTemp;
36     }
37
38     public Bitmap getPicture() {
39         return this.picture;
40     }
41 }