public interface Rule
A Rule represents some action to perform when an unknown domain object is referenced. The rule can use the
 domain object name to add an implicit domain object.
| Modifier and Type | Method | Description | 
|---|---|---|
| void | apply(java.lang.String domainObjectName) | Applies this rule for the given unknown domain object. | 
| java.lang.String | getDescription() | Returns the description of the rule. | 
java.lang.String getDescription()
void apply(java.lang.String domainObjectName)
domainObjectName - The name of the unknown domain object.