Files
openide/java/java-impl/resources/inspectionDescriptions/FrequentlyUsedInheritorInspection.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

23 lines
812 B
HTML

<html>
<body>
Reports classes or interfaces that can be replaced with an implementation or extension of a more specific commonly used class or interface.
<p>For this inspection to work, a superclass needs to be in project source files and the project needs to use the IntelliJ IDEA build system.</p>
<p><b>Example:</b></p>
<pre><code>
class MyInheritor implements A {} // B suggested on the A reference
interface A {}
abstract class B implements A {}
abstract class C1 extends B {}
abstract class C2 extends B {}
abstract class C3 extends B {}
abstract class C4 extends B {}
abstract class C5 extends B {}
</code></pre>
<!-- tooltip end -->
<p>By default, this inspection doesn't highlight issues in the editor but only provides a quick-fix.</p>
<p><small>New in 2017.2</small>
</body>
</html>