I just noticed that constructors of inner-classes are not executed.
My parent class has the following code
private List list;
....and the inner class
public class ABC{
public ABC(){
//some code here which is not executed
}
}
Using random-beans the list property is populated as well as the properties of the innerclass ABC. However the constructor of ABC is never executed which blocks me because some important initialisation is there....