org.bklab.flow.parameter.StringEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-vaadin-flow Show documentation
Show all versions of fluent-vaadin-flow Show documentation
Broderick Labs for fluent vaadin flow. Inherits common Vaadin components.
package org.bklab.flow.parameter;
import java.util.List;
import java.util.function.Consumer;
class StringEditor implements IParameterEditor {
@Override
public boolean supportEdit(ParameterEntry parameterEntry) {
return false;
}
@Override
public void edit(ParameterEntry parameterEntry) {
}
@Override
public List> getSaveListeners() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy