163164165166167168169170171172173174
return stateEngine; } public A getExampleA1() { B b1 = new B(1, "one"); B b2 = new B(2, "two"); List<B> bList = new ArrayList<B>(); bList.add(b1); bList.add(b2);
178179180181182183184185186187188189190
return a; } public A getExampleA2() { B b3 = new B(3, "three"); B b4 = new B(4, "four"); B b5 = new B(5, "five"); List<B> bList = new ArrayList<B>(); bList.add(b3); bList.add(b4); bList.add(b5);
195196197198199200201202203204205206207
return a; } public A getExampleA2Prime() { B c3 = new B(3, "three"); B c4 = new B(4, "four"); B c6 = new B(6, "six"); List<B> cList = new ArrayList<B>(); cList.add(c3); cList.add(c4); cList.add(c6);
43444546474849
@Override protected B doDeserialize(NFDeserializationRecord rec) { int bInt = deserializeInteger(rec, "bInt"); String bString = deserializePrimitiveString(rec, "bString"); return new B(bInt, bString); }
194195196197198199200201202203204205
return delta; } public A getExampleA1() { B b1 = new B(1, "one"); B b2 = new B(2, "two"); List<B> bList = new ArrayList<B>(); bList.add(b1); bList.add(b2);
209210211212213214215216217218219220221
226227228229230231232233234235236237238
228229230231232233234235236237238239
243244245246247248249250251252253254255
260261262263264265266267268269270
return a; } public A getExampleA3() { 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 });