I have:
class Outer {
class Inner {
int field;
}
Inner inner;
}
I am using reflection for get the field Outer.field and recognize that this is a reference to class Inner. What do I have to do to get inner.field (or anything that looks remotely like this like Inner.field)?
thanks are