use of org.archcnl.ui.common.andtriplets.triplet.events.VariableListUpdateRequestedEvent in project ArchCNL by Mari-Wie.
the class VariableSelectionComponent method addListeners.
private void addListeners() {
addCustomValueSetListener(event -> {
setInvalid(false);
fireEvent(new VariableCreationRequestedEvent(this, true, event.getDetail()));
});
addValueChangeListener(event -> {
setInvalid(false);
fireEvent(new VariableSelectedEvent(this, true));
});
addFocusListener(e -> fireEvent(new VariableListUpdateRequestedEvent(this, true)));
}
Aggregations