MATLAB: See signature of a Javafunction in Matlab

MATLABsignatur java

I have a java class ClassA containing a method
public int method1(int a,int b){…}
in a jar file called example.jar. I can creat instances of ClassA and call the method. But is there any way, that i can see the signature of method1 in matlab?
I only found how to do it with matlab functions as describt here.

Best Answer

Use the methods function with the -full option.