how to create a java nested class in peoplecode
Hello,
There is a jar file includes code below:
package P;
public abstract interface A
{
...
public static class B
{
...
}
}
In AD,i tried peoplecode "&j = CreateJavaObject("P.A.B")" but got "java exception:java.lang.NoClassDefFoundError" , but "&j = CreateJavaObject("P.A")" is ok.
How can i create a java object of nested class within PeopleCode?
Any suggestions will help.