show javadoc for getters/setters copied from field (IDEA-60161)

This commit is contained in:
Anna Kozlova
2017-05-22 10:04:57 +03:00
parent 1bc7dbd1be
commit 237f4e0f7e
5 changed files with 39 additions and 0 deletions
@@ -0,0 +1,3 @@
<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://FooBar"><code>FooBar</code></a></b></small><PRE>public&nbsp;<a href="psi_element://java.lang.String"><code>String</code></a>&nbsp;<b>getMyFoo</b>()</PRE><DD><DL><DT><b>Description copied from field:</b>&nbsp;<a href="psi_element://FooBar#myFoo"><code>myFoo</code></a><br>
foo bar baz
</DD></DL></DD></body></html>
@@ -0,0 +1,10 @@
class FooBar {
/**
* foo bar baz
*/
private String myFoo;
public String get<caret>MyFoo() {
return myFoo;
}
}