com.vaadin.v7.ui.components.calendar.event.CalendarEvent 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
/*
* 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.event;
import java.io.Serializable;
import java.util.Date;
/**
*
* Event in the calendar. Customize your own event by implementing this
* interface.
*
*
*
* - Start and end fields are mandatory.
*
* - In "allDay" events longer than one day, starting and ending clock times
* are omitted in UI and only dates are shown.
*
*
* @since 7.1.0
* @author Vaadin Ltd.
*
*/
@Deprecated
public interface CalendarEvent extends Serializable {
/**
* Gets start date of event.
*
* @return Start date.
*/
public Date getStart();
/**
* Get end date of event.
*
* @return End date;
*/
public Date getEnd();
/**
* Gets caption of event.
*
* @return Caption text
*/
public String getCaption();
/**
* Gets description of event. Shown as a tooltip over the event.
*
* @return Description text.
*/
public String getDescription();
/**
*
* Gets style name of event. In the client, style name will be set to the
* event's element class name and can be styled by CSS
*
* Styling example:
* Java code:
* event.setStyleName("color1");
*
* CSS:
* .v-calendar-event-color1 {
* background-color: #9effae;
}
*
* @return Style name.
*/
public String getStyleName();
/**
* An all-day event typically does not occur at a specific time but targets
* a whole day or days. The rendering of all-day events differs from normal
* events.
*
* @return true if this event is an all-day event, false otherwise
*/
public boolean isAllDay();
/**
* Event to signal that an event has changed.
*/
@Deprecated
public class EventChangeEvent implements Serializable {
private CalendarEvent source;
public EventChangeEvent(CalendarEvent source) {
this.source = source;
}
/**
* @return the {@link CalendarEvent} that has changed
*/
public CalendarEvent getCalendarEvent() {
return source;
}
}
/**
* Listener for EventSetChange events.
*/
@Deprecated
public interface EventChangeListener extends Serializable {
/**
* Called when an Event has changed.
*/
public void eventChange(EventChangeEvent eventChangeEvent);
}
/**
* Notifier interface for EventChange events.
*/
@Deprecated
public interface EventChangeNotifier extends Serializable {
/**
* Add a listener to listen for EventChangeEvents. These events are
* fired when a events properties are changed.
*
* @param listener
* The listener to add
*/
void addEventChangeListener(EventChangeListener listener);
/**
* Remove a listener from the event provider.
*
* @param listener
* The listener to remove
*/
void removeEventChangeListener(EventChangeListener listener);
}
}