Hi all together,
i tried to print my class documentation with ABAP Doc and find a small flaw in the output format of the result.
The following example describes the flaw:
"! Class to test ABAP Doc!!!!
class lcl_abap_doc_test DEFINITION.
PUBLIC SECTION.
methods:
"! Just a simple constructor.
"!
"! @parameter iv_text | A text to print....
constructor
IMPORTING
iv_text type string.
endclass.
And these are the results within the element info view:
The flaw from my point of view is, that in the result of the class part the signature of the methods is missing.
If i print the class part now, i will not get the whole documentation.
As a consequence it means,creating a single document with all information would require a big manual handling because i need to request each method seperately. For big classes with many methods this way is not realy comfortable.
Is there a way to get the whole documentation in one step? Maybe it is just a handling issues of me.
If not, would it be possible to have also the signature wihtin the class part?
BR
Eugen Soydas