mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
30 lines
399 B
Java
30 lines
399 B
Java
package sample;
|
|
|
|
public class AllDisabled {
|
|
|
|
public int x = 42;
|
|
private int y = 42;
|
|
|
|
public int getX(){
|
|
return x;
|
|
}
|
|
|
|
public void test1(int param) {
|
|
}
|
|
|
|
private String test2(int param) {
|
|
return "42";
|
|
}
|
|
|
|
@Deprecated
|
|
public String test3(int param) {
|
|
return "42";
|
|
}
|
|
|
|
static class Inner1 {
|
|
}
|
|
|
|
private static class Inner2 {
|
|
}
|
|
}
|