blob: 650556104d4625f83dbf48ac27ec6b1a7bcedb10 [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 StructInNestedNS extends Struct {
12 public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }
13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
14
15 public int a() { return bb.getInt(bb_pos + 0); }
16 public void mutateA(int a) { bb.putInt(bb_pos + 0, a); }
17 public int b() { return bb.getInt(bb_pos + 4); }
18 public void mutateB(int b) { bb.putInt(bb_pos + 4, b); }
19
20 public static int createStructInNestedNS(FlatBufferBuilder builder, int a, int b) {
21 builder.prep(4, 8);
22 builder.putInt(b);
23 builder.putInt(a);
24 return builder.offset();
25 }
Austin Schuh272c6132020-11-14 16:37:52 -080026
27 public static final class Vector extends BaseVector {
28 public Vector __assign(int _vector, int _element_size, ByteBuffer _bb) { __reset(_vector, _element_size, _bb); return this; }
29
30 public StructInNestedNS get(int j) { return get(new StructInNestedNS(), j); }
31 public StructInNestedNS get(StructInNestedNS obj, int j) { return obj.__assign(__element(j), bb); }
32 }
Austin Schuhe89fa2d2019-08-14 20:24:23 -070033}
34