Class HasComponents.ComponentAttachEvent

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing interface:
    HasComponents

    public static class HasComponents.ComponentAttachEvent
    extends Event
    Component attach event sent when a component is attached to container.
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      ComponentAttachEvent​(com.vaadin.flow.component.Component container, com.vaadin.flow.component.Component attachedComponent)
      Creates a new attach event.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.vaadin.flow.component.Component getAttachedComponent()
      Gets the attached component.
      HasComponents getContainer()
      Gets the component container.
      • Methods inherited from class com.vaadin.flow.component.ComponentEvent

        getSource, isFromClient, unregisterListener
      • Methods inherited from class java.util.EventObject

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ComponentAttachEvent

        public ComponentAttachEvent​(com.vaadin.flow.component.Component container,
                                    com.vaadin.flow.component.Component attachedComponent)
        Creates a new attach event.
        Parameters:
        container - the container the component has been detached to.
        attachedComponent - the component that has been attached.
    • Method Detail

      • getContainer

        public HasComponents getContainer()
        Gets the component container.
      • getAttachedComponent

        public com.vaadin.flow.component.Component getAttachedComponent()
        Gets the attached component.