public static interface LayoutEvents.LayoutClickNotifier extends Serializable
LayoutClickEvent
listeners. By implementing this interface a class explicitly announces
that it will generate a LayoutClickEvent when a component
inside it is clicked and a LayoutClickListener is
registered.
Note: The general Java convention is not to explicitly declare that a
class generates events, but to directly define the
addListener and removeListener methods. That
way the caller of these methods has no real way of finding out if the
class really will send the events, or if it just defines the methods to
be able to implement an interface.
LayoutEvents.LayoutClickListener,
LayoutEvents.LayoutClickEvent| Modifier and Type | Method and Description |
|---|---|
Registration |
addLayoutClickListener(LayoutEvents.LayoutClickListener listener)
Add a click listener to the layout.
|
void |
removeLayoutClickListener(LayoutEvents.LayoutClickListener listener)
Deprecated.
As of 8.0, replaced by
Registration.remove() in
the registration object returned from
#addLayoutClickListener(LayoutClickListener). |
Registration addLayoutClickListener(LayoutEvents.LayoutClickListener listener)
LayoutEvents.LayoutClickEvent.listener - The listener to addRegistration@Deprecated void removeLayoutClickListener(LayoutEvents.LayoutClickListener listener)
Registration.remove() in
the registration object returned from
#addLayoutClickListener(LayoutClickListener).listener - LayoutClickListener to be removedCopyright © 2017 Vaadin Ltd. All rights reserved.