org.jsimpledb.vaadin.NullableField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-vaadin Show documentation
Show all versions of jsimpledb-vaadin Show documentation
JSimpleDB classes supporting Vaadin applications.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.vaadin;
import com.vaadin.data.Property;
import com.vaadin.ui.Alignment;
import com.vaadin.ui.Field;
import org.dellroad.stuff.vaadin7.FieldLayout;
/**
* Wraps a {@link Field} that is capable of displaying, but not necessarily choosing, a null value,
* and adds a "Null" button that sets the value to null.
*/
@SuppressWarnings("serial")
public class NullableField extends FieldLayout {
private final SmallButton nullButton = new SmallButton("Null", e -> this.field.setValue(null));
public NullableField(Field field) {
super(field);
this.setMargin(false);
this.setSpacing(true);
this.addComponent(this.field);
this.addComponent(this.nullButton);
this.setComponentAlignment(this.nullButton, Alignment.MIDDLE_LEFT);
this.field.addValueChangeListener(e -> this.updateDisplay());
if (this.field instanceof Property.ReadOnlyStatusChangeNotifier) {
final Property.ReadOnlyStatusChangeNotifier notifier = (Property.ReadOnlyStatusChangeNotifier)field;
notifier.addReadOnlyStatusChangeListener(e -> this.updateDisplay());
}
}
@Override
public void attach() {
super.attach();
this.updateDisplay();
}
// Internal methods
private void updateDisplay() {
this.nullButton.setEnabled(this.field.getValue() != null && !this.field.isReadOnly());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy