Package com.vaadin.flow.component.dialog
Class Dialog.DialogFooter
- java.lang.Object
-
- com.vaadin.flow.component.dialog.Dialog.DialogFooter
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Dialog
public static final class Dialog.DialogFooter extends Object
Class for adding and removing components to the header part of a dialog.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Component... components)
Adds the given components to the container.void
remove(Component... components)
Removes the given components from the container.
-
-
-
Field Detail
-
root
protected final Element root
-
-
Method Detail
-
add
public void add(Component... components)
Adds the given components to the container.- Parameters:
components
- the components to be added.
-
remove
public void remove(Component... components)
Removes the given components from the container.Note that the component needs to be removed from this method in order to guarantee the correct state of the component.
- Parameters:
components
- the components to be removed.
-
-