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

19 lines
1.0 KiB
HTML

<html>
<body>
Reports <code>static</code> methods and fields that
are only used from a class other than the containing class. Such members could be moved into the using class.
Factory methods and members accessed from an anonymous class inside the member's class are ignored by this inspection.
Convenience overloads, which call a method with the same name in the same class but have fewer parameters, are also ignored.
<!-- tooltip end -->
<p>
Use the first checkbox to suppress this inspection when the static member is only used from a test class.
<p>
Use the second checkbox below to ignore member usages from inside anonymous, local, or non-static inner classes.
<p>
Use the third checkbox below to not warn on members that cannot be moved without problems,
for example, because a method with an identical signature is already present in the target class,
or because a field or a method used inside the method will not be accessible when this method is moved.
<p>
Use the fourth checkbox to ignore members located in utility classes.
</body>
</html>