[javadoc inspection]: test "MissingJavadoc" inspection

GitOrigin-RevId: 1bf6991891b8fb26a67c3f9f94f2a230ce030735
This commit is contained in:
Alexandr Suhinin
2022-01-26 11:57:44 +02:00
committed by intellij-monorepo-bot
parent b8ce6d3e04
commit 15dfb6342e
18 changed files with 431 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package sample;
public class <warning descr="Required Javadoc is absent">ClassEnabled</warning> {
public int x = 42;
private int y = 42;
public int getX(){
return x;
}
public void test1(int param) {
}
protected String test2(int param) {
return "42";
}
@Deprecated
public String test3(int param) {
return "42";
}
public static class Inner1 {
}
private static class Inner2 {
}
}