mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
javadoc generation: base class for anonymous (IDEA-132362)
This commit is contained in:
@@ -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 void <b>foo</b>()</PRE><DD><DL><DT><b>Description copied from interface:</b> <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();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user