本文介紹了CheckStyle:JavaDoc;p>;分隔符違規(guī)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我有以下JavaDoc文檔,有<p>
分隔符,但(1)沒有空行,(2)<p>
之后的文本繼續(xù)到下一行,所有這些都是正常的。
/**
* Fetches a list of Org beans based on the provided org code.
* <p>
* Note: This also takes care of Parent/Child orgs.
*
* @param org Organization string
* @return List of Org beans
* @throws Exception
*/
List<Org> loadOrgs(String org) throws Exception;
在CheckStyle中,我的配置是per the spec以允許使用<p>
格式的完全靈活性:
<module name="JavadocParagraph">
<property name="allowNewlineParagraph" value="true"/>
</module>
但刷新后,CheckStyle仍報告兩個<p>
問題:
- <p> tag should be preceded with an empty line.
- <p> tag should be placed immediately before the first word, with no space after
有沒有辦法同時擺脫這兩種情況?
推薦答案
在IntelliJ Idea 2020中,選擇/突出顯示有問題的注釋并重新設(shè)置其格式(Shift+Command+L)。
這篇關(guān)于CheckStyle:JavaDoc;p>;分隔符違規(guī)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,