i\'m trying to develop an e4 application but i have an error : in this part \"error:Type mismatch: cannot convert from element type Object to Parent\" any help please thanks in
change corresponding lines to below code as:
for(Object p : parentholder.getParents()) { Parent p1= (Parent)p; //your code ..... }
similarily for Child class
for(Object p : parentholder.getParents()) { Child child= (Parent)p; //your code ..... }