49efaa333d60378799a3b460c10060dc92aa7d78
[JavaForFun] /
1 /**
2  * Copyright 2014 Gustavo Martin Morcuende
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package name.gumartinm.weather.information.fragment.overview;
17
18 import android.graphics.Bitmap;
19
20 public class OverviewEntry {
21     private final String dateName;
22     private final String dateNumber;
23     private final String maxTemp;
24     private final String minTemp;
25     private final Bitmap picture;
26
27     public OverviewEntry(final String dateName, final String dateNumber,
28             final String maxTemp, final String minTemp,
29             final Bitmap picture) {
30         this.dateName = dateName;
31         this.dateNumber = dateNumber;
32         this.maxTemp = maxTemp;
33         this.minTemp = minTemp;
34         this.picture = picture;
35     }
36
37     public String getDateName() {
38         return this.dateName;
39     }
40
41     public String getDateNumber() {
42         return this.dateNumber;
43     }
44
45     public String getMaxTemp() {
46         return this.maxTemp;
47     }
48
49     public String getMinTemp() {
50         return this.minTemp;
51     }
52
53     public Bitmap getPicture() {
54         return this.picture;
55     }
56 }