com.vaadin.flow.component.

Interface HasComponents

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      default void add(Component... components)

      Adds the given components as children of this component.

      default void remove(Component... components)

      Removes the given child components from this component.

      default void removeAll()

      Removes all contents from this component, this includes child components, text content as well as child elements that have been added directly to this component using the Element API.

    • Method Detail

      • add

        default void add(Component... components)

        Adds the given components as children of this component.

        Parameters:

        components - the components to add

      • remove

        default void remove(Component... components)

        Removes the given child components from this component.

        Parameters:

        components - the components to remove

        Throws:

        IllegalArgumentException - if any of the components is not a child of this component

      • removeAll

        default void removeAll()

        Removes all contents from this component, this includes child components, text content as well as child elements that have been added directly to this component using the Element API. it also removes the children that were added only at the client-side.