mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
show javadoc for getters/setters copied from field (IDEA-60161)
This commit is contained in:
@@ -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 <a href="psi_element://java.lang.String"><code>String</code></a> <b>getMyFoo</b>()</PRE><DD><DL><DT><b>Description copied from field:</b> <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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user