Descriptions
The describedAs() attribute is used to provide a short description of the action to the user. In the Web UI (Wicket viewer) it is displayed as a 'tool tip'.
For example:
public class Customer {
@ActionLayout(describedAs=
"Place a repeat order of the last (most recently placed) order")
public Order placeRepeatOrder(...) { /* ... */ }
}