67d0463980c205d38974afc1d7f860e0bd1a59e8
[JavaForFun] /
1 package de.example.exampletdd.fragment.current;
2
3 import android.graphics.Bitmap;
4
5 public class WeatherCurrentDataEntryFirst {
6     private final Bitmap picture;
7     private final String tempMax;
8     private final String tempMin;
9
10     public WeatherCurrentDataEntryFirst(final String tempMax, final String tempMin,
11             final Bitmap picture) {
12         this.tempMax = tempMax;
13         this.tempMin = tempMin;
14         this.picture = picture;
15     }
16
17     public Bitmap getPicture() {
18         return this.picture;
19     }
20
21     public String getTempMax() {
22         return this.tempMax;
23     }
24
25     public String getTempMin() {
26         return this.tempMin;
27     }
28 }