Create instance for one class, all public fields will be set refer to a XML file Rule: field name should be the tag name in XML, and for ArrayList there should be multi tag named with same field name
Example
=====Class===== public class Tar { int a; boolen b; Inner c; ArrayList d;
}
public class Inner { String c1; ArrayList c2; }
=====XML====== 99 true for c.c1 1 2 3 for d_1.c1 11 12 13 for d_2.c1 21 22 23 for d_3.c1 31 32 33