CSS Styling
The cssClass() element can be used to render additional CSS classes in the HTML (a wrapping <div>) that represents the action parameter.
Application-specific CSS can then be used to target and adjust the UI representation of that particular element.
For example:
public class ToDoItem {
public ToDoItem postpone(
@ParameterLayout(
cssClass="x-key"
)
LocalDate until ) {
// ...
}
// ...
}