Skip to content

Model Documentation Support

Compare
Choose a tag to compare
@miho miho released this 08 Apr 19:17
· 374 commits to master since this release

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();

    ...
}