package testpackage;
public class Test
{
public Test()
{
}
public String getTest()
{
return "testing";
}
}
From Rhino, I just want to go:
var x = new Packages.testPackage.Test();
I keep getting: TypeError: [JavaPackage testpackage.Test] is not a
function, it is object.
No matter what I try, importClass, importPackage, or just namespacing
the Packages.* hierarchy, I can't seem to load this damn class.
Any insights are greatly appreciated.