interface DomainMarkupRenderer
Used to output markup that represents a given domain class.
Type Params | Return Type | Name and description |
---|---|---|
|
abstract java.lang.String |
renderInput(PersistentEntity domainClass) Designed to render a form that will allow users to create or edit domain class instances. |
|
abstract java.lang.String |
renderListOutput(PersistentEntity domainClass) Designed to render a "list" page that will display a list of domain class instances. |
|
abstract java.lang.String |
renderOutput(PersistentEntity domainClass) Designed to render a "show" page that will display a single domain class instance. |
Designed to render a form that will allow users to create or edit domain class instances.
domainClass
- The domain class to be renderedDesigned to render a "list" page that will display a list of domain class instances.
domainClass
- The domain class to be renderedDesigned to render a "show" page that will display a single domain class instance.
domainClass
- The domain class to be rendered