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

14 lines
520 B
HTML

<html>
<body>
Reports cases in which the arguments provided to <code>Method.invoke()</code> and <code>Constructor.newInstance()</code>
do not match the signature specified in <code>Class.getMethod()</code> and <code>Class.getConstructor()</code>.
<p>Example:</p>
<pre><code>
Method m = myObj.getClass().getMethod("myMethod", <b>int</b>.class);
<i>// the argument should be an <b>int</b> value</i>
m.invoke(myObj, "<b>abc</b>");
</code></pre>
<!-- tooltip end -->
<p><small>New in 2017.2</small></p>
</body>
</html>