I have a class named Fruits. Inside the class there is a interface named Sour. Inside the Interface I have a method GetItems();
public class Fruits
{
----------------
----------------
public interface Sour
{
public int GetItems();
}
}
How to get the signature of the GetItems() method?. I want to use this signature in JNI GetMethodID method.