com.vaadin.ui
Class Component.Event
java.lang.Object
java.util.EventObject
com.vaadin.ui.Component.Event
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- AbstractField.ReadOnlyStatusChangeEvent, Button.ClickEvent, Component.ErrorEvent, ComponentContainer.ComponentAttachEvent, ComponentContainer.ComponentDetachEvent, Field.ValueChangeEvent, FieldEvents.BlurEvent, FieldEvents.FocusEvent, FieldEvents.TextChangeEvent, Label.ValueChangeEvent, LoginForm.LoginEvent, MouseEvents.ClickEvent, MouseEvents.DoubleClickEvent, PopupView.PopupVisibilityEvent, Table.ColumnReorderEvent, Table.ColumnResizeEvent, TabSheet.SelectedTabChangeEvent, Tree.CollapseEvent, Tree.ExpandEvent, Upload.FinishedEvent, Upload.StartedEvent, UriFragmentUtility.FragmentChangedEvent, Window.CloseEvent, Window.ResizeEvent
- Enclosing interface:
- Component
public static class Component.Event
- extends EventObject
Superclass of all component originated events.
Events are the basis of all user interaction handling in Vaadin. To
handle events, you provide a listener object that receives the events of
the particular event type.
Button button = new Button("Click Me!");
button.addListener(new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
getWindow().showNotification("Thank You!");
}
});
layout.addComponent(button);
Notice that while each of the event types have their corresponding
listener types; the listener interfaces are not required to inherit the
Component.Listener
interface.
- See Also:
Component.Listener
,
Serialized Form
Component.Event
public Component.Event(Component source)
- Constructs a new event with the specified source component.
- Parameters:
source
- the source component of the event
getComponent
public Component getComponent()
- Gets the component where the event occurred.
- Returns:
- the source component of the event
Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.