com.vaadin.v7.ui.components.calendar.CalendarComponentEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
The newest version!
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.ui.components.calendar;
import com.vaadin.ui.Component;
import com.vaadin.v7.ui.Calendar;
/**
* All Calendar events extends this class.
*
* @since 7.1
* @author Vaadin Ltd.
*
* @deprecated As of 8.0, no replacement available.
*/
@SuppressWarnings("serial")
@Deprecated
public class CalendarComponentEvent extends Component.Event {
/**
* Set the source of the event.
*
* @param source
* The source calendar
*
*/
public CalendarComponentEvent(Calendar source) {
super(source);
}
/*
* (non-Javadoc)
*
* @see com.vaadin.ui.Component.Event#getComponent()
*/
@Override
public Calendar getComponent() {
return (Calendar) super.getComponent();
}
}