javadoc: split annotations one per line (IDEA-116214)

This commit is contained in:
Anna Kozlova
2014-06-11 12:59:13 +04:00
parent b13a996263
commit d94700225c
4 changed files with 13 additions and 0 deletions
@@ -0,0 +1,3 @@
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://Test"><code>Test</code></a></b></small><PRE><font color=red>@Nullable</font>&nbsp;
@<a href="psi_element://java.lang.Deprecated"><code>Deprecated</code></a>&nbsp;
public <a href="psi_element://java.lang.String"><code>String</code></a> <b>field = null</b></PRE></body></html>
@@ -0,0 +1,5 @@
class Test {
@Nullable
@Deprecated
public String field = null;
}