Files
openide/java/java-impl/resources/inspectionDescriptions/JavaModuleDefinition.html
Tagir Valeevandintellij-monorepo-bot a0f777069b [java-highlighting] move module-related warnings to JavaModuleDefinitionInspection
Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only)

GitOrigin-RevId: 66179a41da5e02b759f07f9d6638b87711181348
2025-02-17 12:04:21 +00:00

14 lines
394 B
HTML

<html>
<body>
Reports miscellaneous problems with the module-info.java file. For example, it reports a service which is provided but not exported or used.
<p><b>Example:</b></p>
<pre><code>
module myModule {
// Service is provided but its containing package is not exported
provides com.example.MyService with com.example.MyServiceImpl;
}
</code></pre>
<!-- tooltip end -->
</body>
</html>