org.bklab.flow.dialog.timerange.ITimeRangeSupplier 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.dialog.timerange;
import java.time.LocalDateTime;
public interface ITimeRangeSupplier {
String getName();
LocalDateTime getMin();
LocalDateTime getMax();
default String getLabel() {
return getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy