mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
10 lines
418 B
Java
10 lines
418 B
Java
package foo.bar;
|
|
|
|
<warning descr="Access can be package-private">public</warning> class Public {
|
|
<warning descr="Access can be package-private">public</warning> static class Nested {}
|
|
<warning descr="Access can be package-private">protected</warning> class Inner {}
|
|
|
|
private static class Impl extends Public {}
|
|
private static class Impl2 extends Public.Nested {}
|
|
private class Impl3 extends Public.Inner {}
|
|
} |