mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
[javadoc inspection]: test "MissingJavadoc" inspection
GitOrigin-RevId: 1bf6991891b8fb26a67c3f9f94f2a230ce030735
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b8ce6d3e04
commit
15dfb6342e
@@ -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 {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user