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