use of com.vaadin.flow.component.Component in project flow by vaadin.
the class Card method add.
@Override
public void add(Component... components) {
assert components != null;
for (Component component : components) {
assert component != null;
getElement().appendChild(component.getElement());
getElement().appendChild(getSpacer());
}
}
use of com.vaadin.flow.component.Component in project flow by vaadin.
the class GeneratedVaadinButton method addToPrefix.
/**
* Adds the given components as children of this component at the slot
* 'prefix'.
*
* @param components
* The components to add.
* @see <a
* href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot">MDN
* page about slots</a>
* @see <a
* href="https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element">Spec
* website about slots</a>
*/
protected void addToPrefix(Component... components) {
for (Component component : components) {
component.getElement().setAttribute("slot", "prefix");
getElement().appendChild(component.getElement());
}
}
use of com.vaadin.flow.component.Component in project flow by vaadin.
the class GeneratedVaadinButton method remove.
/**
* Removes the given child components from this component.
*
* @param components
* The components to remove.
* @throws IllegalArgumentException
* if any of the components is not a child of this component.
*/
protected void remove(Component... components) {
for (Component component : components) {
if (getElement().equals(component.getElement().getParent())) {
component.getElement().removeAttribute("slot");
getElement().removeChild(component.getElement());
} else {
throw new IllegalArgumentException("The given component (" + component + ") is not a child of this component");
}
}
}
use of com.vaadin.flow.component.Component in project flow by vaadin.
the class GeneratedVaadinComboBox method addToPrefix.
/**
* Adds the given components as children of this component at the slot
* 'prefix'.
*
* @param components
* The components to add.
* @see <a
* href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot">MDN
* page about slots</a>
* @see <a
* href="https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element">Spec
* website about slots</a>
*/
protected void addToPrefix(Component... components) {
for (Component component : components) {
component.getElement().setAttribute("slot", "prefix");
getElement().appendChild(component.getElement());
}
}
use of com.vaadin.flow.component.Component in project flow by vaadin.
the class GeneratedVaadinFormItem method addToLabel.
/**
* Adds the given components as children of this component at the slot
* 'label'.
*
* @param components
* The components to add.
* @see <a
* href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot">MDN
* page about slots</a>
* @see <a
* href="https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element">Spec
* website about slots</a>
*/
protected void addToLabel(Component... components) {
for (Component component : components) {
component.getElement().setAttribute("slot", "label");
getElement().appendChild(component.getElement());
}
}
Aggregations