1 // automatically generated by the FlatBuffers compiler, do not modify 2 3 package NamespaceA.NamespaceB; 4 5 import java.nio.*; 6 import java.lang.*; 7 import java.util.*; 8 import com.google.flatbuffers.*; 9 10 public class StructInNestedNST { 11 private int a; 12 private int b; 13 getA()14 public int getA() { return a; } 15 setA(int a)16 public void setA(int a) { this.a = a; } 17 getB()18 public int getB() { return b; } 19 setB(int b)20 public void setB(int b) { this.b = b; } 21 22 StructInNestedNST()23 public StructInNestedNST() { 24 this.a = 0; 25 this.b = 0; 26 } 27 } 28 29