blob: a655199331deab84bc9ae873614406e06fb26f43 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package NamespaceA;
4
5import java.nio.*;
6import java.lang.*;
7import java.util.*;
8import com.google.flatbuffers.*;
9
10@SuppressWarnings("unused")
11public final class SecondTableInA extends Table {
12 public static void ValidateVersion() { Constants.FLATBUFFERS_1_11_1(); }
13 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb) { return getRootAsSecondTableInA(_bb, new SecondTableInA()); }
14 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }
16 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
17
18 public NamespaceC.TableInC referToC() { return referToC(new NamespaceC.TableInC()); }
19 public NamespaceC.TableInC referToC(NamespaceC.TableInC obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
20
21 public static int createSecondTableInA(FlatBufferBuilder builder,
22 int refer_to_cOffset) {
23 builder.startTable(1);
24 SecondTableInA.addReferToC(builder, refer_to_cOffset);
25 return SecondTableInA.endSecondTableInA(builder);
26 }
27
28 public static void startSecondTableInA(FlatBufferBuilder builder) { builder.startTable(1); }
29 public static void addReferToC(FlatBufferBuilder builder, int referToCOffset) { builder.addOffset(0, referToCOffset, 0); }
30 public static int endSecondTableInA(FlatBufferBuilder builder) {
31 int o = builder.endTable();
32 return o;
33 }
34}
35