javadoc generation: base class for anonymous (IDEA-132362)

This commit is contained in:
Anna Kozlova
2014-11-10 20:41:54 +01:00
parent 3573848a34
commit db9d8d03fb
4 changed files with 36 additions and 0 deletions
@@ -0,0 +1,4 @@
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><PRE>
public&nbsp;void&nbsp;<b>foo</b>()</PRE><DD><DL><DT><b>Description copied from interface:</b>&nbsp;<a href="psi_element://Foo"><code>Foo</code></a><br>
some javadoc
</DD></DL></DD><DD><DL><DT><b>Specified by:</b><DD><a href="psi_element://Foo#foo()"><code>foo</code></a> in interface <a href="psi_element://Foo"><code>Foo</code></a></DD></DL></DD></body></html>
@@ -0,0 +1,18 @@
class Bar {
public static void main(String[] args) {
new Foo() {
@Override
public void foo() {
}
};
}
}
interface Foo {
/**
* some javadoc
*/
void foo();
}