Class LoginOverlay.LoginOverlayCustomFormArea

java.lang.Object
com.vaadin.flow.component.login.LoginOverlay.LoginOverlayCustomFormArea
All Implemented Interfaces:
Serializable
Enclosing class:
LoginOverlay

public static final class LoginOverlay.LoginOverlayCustomFormArea extends Object
Class for adding and removing components to the custom form area of the overlay.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(com.vaadin.flow.component.Component... components)
    Adds the given components to the container.
    void
    remove(com.vaadin.flow.component.Component... components)
    Removes the given components from the container.
    void
    Removes all components from the container.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • add

      public void add(com.vaadin.flow.component.Component... components)
      Adds the given components to the container. Note: components have to be added when the overlay is closed.
      Parameters:
      components - the components to be added.
      Throws:
      UnsupportedOperationException - when using this method while overlay is opened
    • remove

      public void remove(com.vaadin.flow.component.Component... components)
      Removes the given components from the container. Note: components have to be removed when the overlay is closed.
      Parameters:
      components - the components to be removed.
      Throws:
      UnsupportedOperationException - when using this method while overlay is opened
    • removeAll

      public void removeAll()
      Removes all components from the container. Note: components have to be removed when the overlay is closed.
      Throws:
      UnsupportedOperationException - when using this method while overlay is opened