James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame^] | 1 | // automatically generated by the FlatBuffers compiler, do not modify |
| 2 | |
| 3 | package NamespaceA; |
| 4 | |
| 5 | import java.nio.*; |
| 6 | import java.lang.*; |
| 7 | import java.util.*; |
| 8 | import com.google.flatbuffers.*; |
| 9 | |
| 10 | public class TableInFirstNST { |
| 11 | private NamespaceA.NamespaceB.TableInNestedNST fooTable; |
| 12 | private byte fooEnum; |
| 13 | private NamespaceA.NamespaceB.UnionInNestedNSUnion fooUnion; |
| 14 | private NamespaceA.NamespaceB.StructInNestedNST fooStruct; |
| 15 | |
| 16 | public NamespaceA.NamespaceB.TableInNestedNST getFooTable() { return fooTable; } |
| 17 | |
| 18 | public void setFooTable(NamespaceA.NamespaceB.TableInNestedNST fooTable) { this.fooTable = fooTable; } |
| 19 | |
| 20 | public byte getFooEnum() { return fooEnum; } |
| 21 | |
| 22 | public void setFooEnum(byte fooEnum) { this.fooEnum = fooEnum; } |
| 23 | |
| 24 | public NamespaceA.NamespaceB.UnionInNestedNSUnion getFooUnion() { return fooUnion; } |
| 25 | |
| 26 | public void setFooUnion(NamespaceA.NamespaceB.UnionInNestedNSUnion fooUnion) { this.fooUnion = fooUnion; } |
| 27 | |
| 28 | public NamespaceA.NamespaceB.StructInNestedNST getFooStruct() { return fooStruct; } |
| 29 | |
| 30 | public void setFooStruct(NamespaceA.NamespaceB.StructInNestedNST fooStruct) { this.fooStruct = fooStruct; } |
| 31 | |
| 32 | |
| 33 | public TableInFirstNST() { |
| 34 | this.fooTable = null; |
| 35 | this.fooEnum = 0; |
| 36 | this.fooUnion = null; |
| 37 | this.fooStruct = new NamespaceA.NamespaceB.StructInNestedNST(); |
| 38 | } |
| 39 | } |
| 40 | |