blob: af1449bfc3949bb9c7d4dadb86e39e99f2c93c6a [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package NamespaceA.NamespaceB;
4
5import java.nio.*;
6import java.lang.*;
7import java.util.*;
8import com.google.flatbuffers.*;
9
10@SuppressWarnings("unused")
11public final class TableInNestedNS extends Table {
12 public static void ValidateVersion() { Constants.FLATBUFFERS_1_11_1(); }
13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb) { return getRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
14 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS 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 TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
17
18 public int foo() { int o = __offset(4); return o != 0 ? bb.getInt(o + bb_pos) : 0; }
19 public boolean mutateFoo(int foo) { int o = __offset(4); if (o != 0) { bb.putInt(o + bb_pos, foo); return true; } else { return false; } }
20
21 public static int createTableInNestedNS(FlatBufferBuilder builder,
22 int foo) {
23 builder.startTable(1);
24 TableInNestedNS.addFoo(builder, foo);
25 return TableInNestedNS.endTableInNestedNS(builder);
26 }
27
28 public static void startTableInNestedNS(FlatBufferBuilder builder) { builder.startTable(1); }
29 public static void addFoo(FlatBufferBuilder builder, int foo) { builder.addInt(0, foo, 0); }
30 public static int endTableInNestedNS(FlatBufferBuilder builder) {
31 int o = builder.endTable();
32 return o;
33 }
34}
35