mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 1bf6991891b8fb26a67c3f9f94f2a230ce030735
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 {
|
|
}
|
|
}
|