Package com.storedobject.vaadin
Class Clickable<T extends com.vaadin.flow.component.Component>
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<T>
com.storedobject.vaadin.Clickable<T>
- Type Parameters:
T
- Component type
- All Implemented Interfaces:
ClickNotifier
,com.vaadin.flow.component.AttachNotifier
,com.vaadin.flow.component.ClickNotifier<com.vaadin.flow.component.Component>
,com.vaadin.flow.component.DetachNotifier
,com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasStyle
,Serializable
public class Clickable<T extends com.vaadin.flow.component.Component>
extends com.vaadin.flow.component.Composite<T>
implements ClickNotifier
A wrapped class to make any Vaadin component "clickable". The registered
ClickHandler
will receive
EnhancedClickEvent
s.
Example: Component c; new Clickable(c);
- Author:
- Syam
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.shared.Registration
addClickHandler
(ClickHandler clickHandler) Add a click handler.com.vaadin.flow.shared.Registration
addClickListener
(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.Component>> listener) protected T
void
removeClickListener
(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.Component>> listener) Remove a listener.Methods inherited from class com.vaadin.flow.component.Composite
getChildren, getContent, getElement
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.storedobject.vaadin.util.ClickNotifier
replaceClickListener
Methods inherited from interface com.vaadin.flow.component.ClickNotifier
addClickShortcut, addDoubleClickListener, addSingleClickListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
Clickable
-
Clickable
Constructor.- Parameters:
component
- Component to make it clickableclickHandler
- Click handler
-
-
Method Details
-
initContent
-
addClickListener
public com.vaadin.flow.shared.Registration addClickListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.Component>> listener) - Specified by:
addClickListener
in interfacecom.vaadin.flow.component.ClickNotifier<T extends com.vaadin.flow.component.Component>
-
removeClickListener
public void removeClickListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.Component>> listener) Description copied from interface:ClickNotifier
Remove a listener.- Specified by:
removeClickListener
in interfaceClickNotifier
- Parameters:
listener
- Listener
-
addClickHandler
Add a click handler.- Parameters:
clickHandler
- Click handler to add- Returns:
- Registration.
-