Model Documentation Support
Models can be documented via the newly introduced @Doc("The documentation")
. This documentation will be added to the generated API documentation, see issue #27 .
Example:
@Doc("A finite state machine.")
interface FSM {
@Doc("The current state of this FSM.")
State getCurrentState();
...
}