About the Fluent UI category

Fluent UI: Benefit in short: Instead of:

Label l1 = new Label();
l1.setCaption(“foo”);
l1.setWidth(“100%”);
l1.setHeight(“100%”);

write:

Label l2 = FluentUI.label(“foo”).width(“100%”).height(“100%”).get();

This project aims to support all UI Components with a fluent api and add helpful shortcuts.