2 * Copyright 2014 Gustavo Martin Morcuende
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package name.gumartinm.weather.information.fragment.overview;
18 import android.graphics.Bitmap;
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;
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;
37 public String getDateName() {
41 public String getDateNumber() {
42 return this.dateNumber;
45 public String getMaxTemp() {
49 public String getMinTemp() {
53 public Bitmap getPicture() {