blob: 8d55b366e28b86ae97cc2067c2e8b1f58501c877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package com.vaadin.tests.themes.valo;
import com.vaadin.v7.ui.components.calendar.event.BasicEvent;
/**
* Test CalendarEvent implementation.
*
* @see com.vaadin.v7.ui.addon.calendar.test.ui.Calendar.Event
*/
public class CalendarTestEvent extends BasicEvent {
private static final long serialVersionUID = 2820133201983036866L;
private String where;
private Object data;
public String getWhere() {
return where;
}
public void setWhere(String where) {
this.where = where;
fireEventChange();
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
fireEventChange();
}
}
|