我已将Android Studio(IntelliJ)配置为插入< p>通过选中Preferences > Code Style > Java > JavaDoc.
但是,当我将格式化程序应用于现有代码库(Code > Reformat Code...
)时,< p>标签未插入。
我的问题是,如何让IDE成功地为javadoc换行符< p>应用格式化程序?令牌?
答案 0 :(得分:0)
如果你有这样的JavaDoc:
/**
* Text
* <- no tag will be added here
* @author foo
*/
<p/>
和Text
之间不会插入@author
标记,因为它不会在那里起作用。标签只会插入描述的行之间(JavaDoc的第一部分):
/**
* Text 1
* <- <p/> will be inserted on this line after reformat
* Text 2
* <- no tag will be inserted here
* @author foo
*/
我不确定这是否是你遇到的问题。请在评论中告诉我,如果第二个示例中的多行描述适用于您,或者它根本不起作用。