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.
fernflower/testData/src/java9/sample.module/module-info.java

18 lines
328 B

import pkg.test1.TestModuleAnno;
@TestModuleAnno("...")
module sample.module {
requires java.base;
uses java.util.spi.ToolProvider;
provides sample.pkg1.TestService with sample.pkg1.TestServiceImpl;
exports sample.pkg1;
exports sample.pkg2 to java.base;
opens sample.pkg1;
opens sample.pkg2 to java.base;
}