mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 02:04:23 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
16 lines
733 B
HTML
16 lines
733 B
HTML
<html>
|
|
<body>
|
|
Reports cases when your code prevents a class from being subclassed by some framework
|
|
(for example, Spring or Hibernate) at runtime.
|
|
<!-- tooltip end -->
|
|
<p>Typical examples of necessary but impossible subclassing:</p>
|
|
<ul>
|
|
<li><code>final</code> classes marked with framework-specific annotations (for example, Spring <code>@Configuration</code>)</li>
|
|
<li><code>final</code>, <code>static</code> or <code>private</code> methods
|
|
marked with framework-specific annotations (for example, Spring <code>@Transactional</code>)</li>
|
|
<li>methods marked with framework-specific annotations inside <code>final</code> classes</li>
|
|
</ul>
|
|
|
|
<p>The list of reported cases depends on the frameworks used.</p>
|
|
</body>
|
|
</html> |