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++; } }); } }


上一篇:
下一篇:
切换中文