mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
30 lines
463 B
Java
30 lines
463 B
Java
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 {
|
|
}
|
|
}
|