add newly generated Java and CSharp test sources

This commit is contained in:
Robert Schmidtke
2017-10-02 10:46:57 +02:00
parent 18353a4ee5
commit a5e25dc2ad
20 changed files with 62 additions and 0 deletions

View File

@@ -14,6 +14,9 @@ public struct TableInNestedNS : IFlatbufferObject
public ByteBuffer ByteBuffer { get { return __p.bb; } }
public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb) { return GetRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
public static TableInNestedNS GetSizePrefixedRootAsTableInNestedNS(ByteBuffer _psbb) { return GetSizePrefixedRootAsTableInNestedNS(_psbb, new TableInNestedNS()); }
public static TableInNestedNS GetSizePrefixedRootAsTableInNestedNS(ByteBuffer _psbb, TableInNestedNS obj) { ByteBuffer _bb = _psbb.Slice(); _bb.Position = 4; return GetRootAsTableInNestedNS(_bb, obj); }
public static int GetSizePrefix(ByteBuffer _bb) { return _bb.GetInt(_bb.Position); }
public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }