use of com.vaadin.flow.component.HasComponents in project flow by vaadin.
the class SubPropertyModelTemplate method valueUpdated.
@EventHandler
private void valueUpdated() {
Div div = new Div();
div.setId("value-update");
div.setText(getStatus().getMessage());
((HasComponents) getParent().get()).add(div);
}
use of com.vaadin.flow.component.HasComponents in project flow by vaadin.
the class SubPropertyModelTemplate method sync.
@EventHandler
private void sync() {
Div div = new Div();
div.setId("synced-msg");
div.setText(getStatus().getMessage());
((HasComponents) getParent().get()).add(div);
}
use of com.vaadin.flow.component.HasComponents in project flow by vaadin.
the class SubPropertyModelTemplate method click.
@EventHandler
private void click(@ModelItem("status") Status statusItem) {
Div div = new Div();
div.setId("statusClick");
div.setText(statusItem.getMessage());
((HasComponents) getParent().get()).add(div);
}
Aggregations