mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
30 lines
533 B
Java
30 lines
533 B
Java
package sample;
|
|
|
|
public class ProtectedInnerClassEnabled {
|
|
|
|
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 <warning descr="Required Javadoc is absent">Inner1</warning> {
|
|
}
|
|
|
|
protected static class <warning descr="Required Javadoc is absent">Inner2</warning> {
|
|
}
|
|
}
|