public class CounterPage extends WebPage {
private int count = 0;
private Label countLabel;
public CounterPage() {
countLabel = new Label("countLabel", new PropertyModel<>(this, "count"));
add(countLabel);
add(new Link<Void>("incrementLink") {
@Override
public void onClick() {
count++;
}
});
}
}