quick javadoc: include new javadoc tags in view (IDEA-128304)

This commit is contained in:
Anna Kozlova
2014-12-24 14:26:27 +01:00
parent fc2f15f64e
commit e130ff2669
4 changed files with 34 additions and 0 deletions
@@ -0,0 +1 @@
<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>public&nbsp;void&nbsp;<b>foo</b>()</PRE><DD><DL><DT><b>apiNote</b><DD> my api note </DD></DL></DD><DD><DL><DT><b>implSpec</b><DD> my impl spec </DD></DL></DD><DD><DL><DT><b>implNote</b><DD> my impl note</DD></DL></DD></body></html>
@@ -0,0 +1,13 @@
class Test {
/**
* @apiNote
* my api note
*
* @implSpec
* my impl spec
*
* @implNote
* my impl note
*/
public void foo(){}
}