mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
javadoc: inherit parameter documentation from base class doc comment when method in this class has no doc comment (IDEA-89925)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><PRE><a href="psi_element://java.lang.String"><code>String</code></a> <b>s</b></PRE><DD><code>s</code> - String parameter.</body></html>
|
||||
@@ -0,0 +1,14 @@
|
||||
public class Outer {
|
||||
public static interface Inner {
|
||||
/**
|
||||
* Method.
|
||||
* @param s String parameter.
|
||||
*/
|
||||
void foo(String s);
|
||||
}
|
||||
|
||||
public static class Impl implements Inner {
|
||||
public void foo(String s) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user