@Component(name = "ExamplePage")
public class ExamplePage {
@Property
private String message;
@SetupRender
private void init() {
message = "Hello, Tapestry Annotations!";
}
@OnEvent(value = "click")
private void handleClick() {
message = "Button clicked!";
}
}
html
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_4.xsd">
<body>
<t:ExamplePage/>
</body>
</html>