mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
381 B
Java
9 lines
381 B
Java
package my.main;
|
|
|
|
class Main {
|
|
void foo() throws Exception {
|
|
Class.forName("my.api.Api");
|
|
Class.forName(<warning descr="The module 'API' does not export the package 'my.impl' to the module 'MAIN'">"my.impl.Impl"</warning>);
|
|
Class.forName(<warning descr="The module 'API' does not open the package 'my.api' to the module 'MAIN'">"my.api.PackageLocal"</warning>);
|
|
}
|
|
} |