...

Text file src/github.com/google/flatbuffers/tests/namespace_test/NamespaceA/TableInFirstNST.java

Documentation: github.com/google/flatbuffers/tests/namespace_test/NamespaceA

     1// automatically generated by the FlatBuffers compiler, do not modify
     2
     3package NamespaceA;
     4
     5import java.nio.*;
     6import java.lang.*;
     7import java.util.*;
     8import com.google.flatbuffers.*;
     9
    10public 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

View as plain text