Java code:

public class ParentClass
{
    class ChildClass
    {
        public String strUrl;         

        /**
         * Standard Constructor.
         */
        public ChildClass( )
        {
            strUrl = "";
        {
    }

    // Some code goes here ....
}

How you can see I have ParentClass and ChildClass in it. Now from my JNI code I want to get ChildClass and call it's constructor. In JNI I have ParentClass object.

What must I do to get ChildClass object from ParentClass and call ChildClass functions or set members?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

In oracle java the syntax will be

env->FindClass("ParentClass$ChildClass");

This may works also for android. Plus constructor of inner class have additional parameter, reference to outer class.

link|improve this answer
Thank's for answer !!! – ViTo Brothers Nov 17 '11 at 8:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.