try to find referenced member inside inner class if failed try enclosing (IDEADEV-40929)

This commit is contained in:
anna
2009-10-21 13:37:49 +04:00
parent d349ae724f
commit 58ccc4c14b
41 changed files with 465 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
class Test {
/**
* This element was written by {@link Test#write(Object, <error>XmlWriter</error>)}
* method. So <code>read</code> and <code>write</code> methods should be consistent.
*/
public void read(){}
public void write(Object o, <error>XmlWriter</error> writer){}
}