Nishant Aanjaney Jalan
05/26/2024, 7:55 PM/**
* This is some example class
* @constructor this is how i describe my primary constructor
* @property property1 docs for prop1
* @property property2 docs for prop2
*/
class Example(
private val property1: Int,
private val property2: Int
) {...}
Now my issue is that since property1 and property2 are both private, they do not show up in the dokka HTML generated documentation. I looked up how I could change the Gradle build configuration to say that I should include private
visibility. However, it would enable that for the whole project, which I do not want to. How do I make dokka know to show the documentation for the private properties just for this Example
class?jw
05/26/2024, 10:47 PM@parameter
Nishant Aanjaney Jalan
05/27/2024, 12:13 PM