Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.1.0
-
Component/s: DSL for Services
-
Labels:None
-
Number of attachments :
Description
In the Service DSL, I'd like to properly document custom methods but I am unable to write documentation for the return type and arguments.
something.sermod
"This method enables you to search based on a searchQuery." method something in [ "Contains the query to execute." StringDto searchQuery; "Controls whether or not the returned List is ordered." BooleanDto ordered; ] out "The list of found objects." CoolListDto;
The obvious workaround is to write @param stuff in the method documentation.
Forgot to mention that the first piece of comment does not result in errors in Mod4j, but the subsequent three comment block are not allowed.