...
1// 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
10public class StructInNestedNST {
11 private int a;
12 private int b;
13
14 public int getA() { return a; }
15
16 public void setA(int a) { this.a = a; }
17
18 public int getB() { return b; }
19
20 public void setB(int b) { this.b = b; }
21
22
23 public StructInNestedNST() {
24 this.a = 0;
25 this.b = 0;
26 }
27}
28
View as plain text