]> source.dussan.org Git - vaadin-framework.git/blob
1e69812602e436f97834d28729426ee81cc84111
[vaadin-framework.git] /
1 /*
2  * Copyright 2000-2018 Vaadin Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * 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, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.vaadin.v7.client.ui.calendar.schedule;
17
18 import java.util.Date;
19
20 import com.google.gwt.user.client.ui.HTML;
21 import com.vaadin.v7.client.ui.VCalendar;
22
23 /**
24  * Represents a cell used in {@link WeeklyLongEvents}.
25  *
26  * @since 7.1
27  */
28 public class WeeklyLongEventsDateCell extends HTML implements HasTooltipKey {
29     private Date date;
30     private CalendarEvent calendarEvent;
31     private VCalendar calendar;
32
33     public WeeklyLongEventsDateCell() {
34     }
35
36     public void setDate(Date date) {
37         this.date = date;
38     }
39
40     public Date getDate() {
41         return date;
42     }
43
44     public void setEvent(CalendarEvent event) {
45         calendarEvent = event;
46     }
47
48     public CalendarEvent getEvent() {
49         return calendarEvent;
50     }
51
52     public void setCalendar(VCalendar calendar) {
53         this.calendar = calendar;
54     }
55
56     public VCalendar getCalendar() {
57         return calendar;
58     }
59
60     @Override
61     public Object getTooltipKey() {
62         if (calendarEvent != null) {
63             return calendarEvent.getIndex();
64         }
65         return null;
66     }
67 }