[java] supports @uses, @provides and @hidden tags in Javadoc inspection

This commit is contained in:
Roman Shevchenko
2017-10-05 21:24:45 +02:00
parent cf39c28813
commit 96373cd2c9
15 changed files with 199 additions and 143 deletions

View File

@@ -1,8 +1,6 @@
class Test {
/**
* <warning descr="'throws' tag description is missing">@throws</warning>
*/
public void foo() {}
class SomeClass {}
/**
* <warning descr="'throws' tag description is missing"><warning descr="Class reference expected">@throws</warning></warning>
*/
public void foo() {}
}