mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-142762 Documentation view does not preserve documentation for renamed method parameters
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<html><head><base href="placeholder"> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://Bar"><code>Bar</code></a></b></small><PRE>
|
||||
void <b>m</b>(int bar)</PRE><DD><DL><DT><b>Overrides:</b><DD><a href="psi_element://Foo#m(int)"><code>m</code></a> in class <a href="psi_element://Foo"><code>Foo</code></a></DD></DL></DD><DD><DL><DT><b>Parameters:</b><DD><code>bar</code> - description</DD></DL></DD></body></html>
|
||||
@@ -0,0 +1,13 @@
|
||||
import java.lang.Override;
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param foo description
|
||||
*/
|
||||
void m(int foo) {}
|
||||
}
|
||||
|
||||
class Bar extends Foo {
|
||||
@Override
|
||||
void m(int bar) {}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
<html><head><base href="placeholder"> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://Bar"><code>Bar</code></a></b></small><PRE>
|
||||
<U> void <b>m</b>(U u)</PRE><DD><DL><DT><b>Overrides:</b><DD><a href="psi_element://Foo#m(java.lang.Object)"><code>m</code></a> in class <a href="psi_element://Foo"><code>Foo</code></a></DD></DL></DD><DD><DL><DT><b>Type parameters:</b><DD><code><U></code> - description</DD></DL></DD></body></html>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
import java.lang.Override;
|
||||
|
||||
class Foo {
|
||||
/**
|
||||
* @param <T> description
|
||||
*/
|
||||
<T> void m(T t) {}
|
||||
}
|
||||
|
||||
class Bar extends Foo {
|
||||
@Override
|
||||
<U> void m(U u) {}
|
||||
}
|
||||
Reference in New Issue
Block a user