mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
520 B
HTML
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> |