About the Incubator Paginator category

Incubator Paginator: Paginator is a Web Component providing an easy way to display a full functioning paginator on a webpage.

How is it used?

A simple use of the paginator component would be the following.

// 10 pages, current page 1
Paginator paginator = new Paginator(10, 1, "beginning", "end");

paginator.addChangeSelectedPageListener(event -> {
    h3.setText("Page: " + event.getPage());
});