blob: 7892462b95dc551dd098874d0fa56cdefd351fcd [file] [log] [blame]
James Kuszmaul8e62b022022-03-22 09:33:25 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example;
4
5import java.nio.*;
6import java.lang.*;
7import java.util.*;
8import com.google.flatbuffers.*;
9
10public class NestedStructT {
11 private int[] a;
12 private byte b;
13 private byte[] c;
14 private long[] d;
15
16 public int[] getA() { return a; }
17
18 public void setA(int[] a) { if (a != null && a.length == 2) this.a = a; }
19
20 public byte getB() { return b; }
21
22 public void setB(byte b) { this.b = b; }
23
24 public byte[] getC() { return c; }
25
26 public void setC(byte[] c) { if (c != null && c.length == 2) this.c = c; }
27
28 public long[] getD() { return d; }
29
30 public void setD(long[] d) { if (d != null && d.length == 2) this.d = d; }
31
32
33 public NestedStructT() {
34 this.a = new int[2];
35 this.b = 0;
36 this.c = new byte[2];
37 this.d = new long[2];
38 }
39}
40