170171172173174175176177178179180
List<B> bList = new ArrayList<B>(); bList.add(b1); bList.add(b2); C c = new C(Long.MAX_VALUE, new byte[] { 1, 2, 3, 4, 5 }); A a = new A(bList, c, 1); return a; }
187188189190191192193194195196197
List<B> bList = new ArrayList<B>(); bList.add(b3); bList.add(b4); bList.add(b5); C c = new C(Long.MAX_VALUE, new byte[] { 10, 9, 8, 7, 6 }); A a = new A(bList, c, 2); return a; }
204205206207208209210211212213214
List<B> cList = new ArrayList<B>(); cList.add(c3); cList.add(c4); cList.add(c6); C d = new C(Long.MAX_VALUE, new byte[] { 10, 9, 8, 7, 6 }); A a = new A(cList, d, 2); return a; }
201202203204205206207208209210211
218219220221222223224225226227228
235236237238239240241242243244245
252253254255256257258259260261262
265266267268269270271272273274275
B b3 = new B(8, "eight"); List<B> bList = new ArrayList<B>(); bList.add(b3); C c = new C(Long.MAX_VALUE, new byte[] { 20, 30, 40 }); A a = new A(bList, c, 3); return a; }
282283284285286287288289290291292