You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am generating documentation for my project in Dokka.
I have an interface A with a set of functions. Class B implements interface A. Class C extends B. I am generating documentation for class C.
I have set the following parameters in dokka configuation. suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
My expectation is that the documentation of class C will contain public functions of class C and the inherited functions from class B. I see that the documentation of class C contains interface A documentations appear as abstract functions along with class B and class C public functions.
Is there a way to avoid functions of interface A being displayed in documentation of class C?
I appreciate if for any response that help me to solve this issue.
Thanks,
Anu
The text was updated successfully, but these errors were encountered:
Hello,
I am generating documentation for my project in Dokka.
I have an interface A with a set of functions. Class B implements interface A. Class C extends B. I am generating documentation for class C.
I have set the following parameters in dokka configuation.
suppressInheritedMembers.set(false)
suppressObviousFunctions.set(true)
My expectation is that the documentation of class C will contain public functions of class C and the inherited functions from class B. I see that the documentation of class C contains interface A documentations appear as abstract functions along with class B and class C public functions.
Is there a way to avoid functions of interface A being displayed in documentation of class C?
I appreciate if for any response that help me to solve this issue.
Thanks,
Anu
The text was updated successfully, but these errors were encountered: