I have a java class there I can't access the 'processA' method:
public class A extends B {
public A()
public static double[] processA(double[], double[])
static{} }
Code:
Rjb::load(classpath ='path', jvmargs=[])
pr = Rjb::import('A')
processA = pr.new
Listing the methods with processA.public_methods lists a number of inherited methods but not the 'processA'
|