Package com.vaadin.ui
Interface Button.ClickListener
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ColorPickerPopup
- Enclosing class:
- Button
public static interface Button.ClickListener extends Serializable
Interface for listening for aButton.ClickEventfired by aComponent.- Since:
- 3.0
- Author:
- Vaadin Ltd.
-
-
Field Summary
Fields Modifier and Type Field Description static MethodBUTTON_CLICK_METHOD
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbuttonClick(Button.ClickEvent event)Called when aButtonhas been clicked.
-
-
-
Field Detail
-
BUTTON_CLICK_METHOD
static final Method BUTTON_CLICK_METHOD
-
-
Method Detail
-
buttonClick
void buttonClick(Button.ClickEvent event)
Called when aButtonhas been clicked. A reference to the button is given byButton.ClickEvent.getButton().- Parameters:
event- An event containing information about the click.
-
-