TSergey / intellij-javadocs

Intellij-idea javadocs generator
http://tsergey.github.io/intellij-javadocs/
Apache License 2.0
237 stars 96 forks source link

Java doc not generates for private methods #59

Closed darwinfrancis closed 8 years ago

darwinfrancis commented 8 years ago

i have a function something like this private void saveCompanyName(String companyName) { preference.saveCompany(companyName) }

when i try to generate java doc nothing happens,but when i remove the private keyword the docs generated successfully.

gradle version : gradle:2.1.0 studio version : 2.1.1

jmengelle commented 8 years ago

There is an settings to enable javadoc generation for private method.

darwinfrancis commented 8 years ago

Okei, thank u

shanyuxiyun commented 6 years ago

u can modify config file and add one line: C:\Users\user.IdeaIC2018.1\config\options\intellij-javadocs.xml

      <VISIBILITIES>
        <VISIBILITY>PUBLIC</VISIBILITY>
        <VISIBILITY>DEFAULT</VISIBILITY>
        <VISIBILITY>PROTECTED</VISIBILITY>
        <VISIBILITY>PRIVATE</VISIBILITY>
      </VISIBILITIES>
EnjoyWall commented 4 years ago

mac下的路径为 /Users/{username}/Library/Preferences/IntelliJIdea2019.1/options/intellij-javadocs.xml