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/results/module-info.dec

19 lines
356 B

import sample.pkg1.TestModuleAnno;
@TestModuleAnno("...")
module sample.module {
requires java.desktop;
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;
}