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

@@ -11,6 +11,9 @@ import com.google.flatbuffers.*;
public final class TableInNestedNS extends Table {
public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb) { return getRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); 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) { _bb.order(ByteOrder.LITTLE_ENDIAN); return _bb.getInt(_bb.position()); }
public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }