Fork of the Fernflower decompiler
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@Deprecated
|
|
module sample.module {
|
|
requires java.base;
|
|
|
|
exports sample.pkg1;
|
|
exports sample.pkg2 to
|
|
java.base;
|
|
|
|
opens sample.pkg1;
|
|
opens sample.pkg2 to
|
|
java.base;
|
|
|
|
uses java.util.spi.ToolProvider;
|
|
|
|
provides sample.pkg1.TestService with
|
|
sample.pkg1.TestServiceImpl;
|
|
}
|
|
|
|
|