Descriptions

The describedAs() element is used to provide a short description of the domain object to the user. In the Web UI (Wicket viewer) it is displayed as a 'tool tip'.

For example:

@DomainObjectLayout(
    describedAs = "A customer who may have originally become"
                + " known to us via the marketing system or who may"
                + " have contacted us directly."
 )
public class ProspectiveSale {
   ...
}