xref: /aosp_15_r20/external/flatbuffers/tests/MyGame/Example/TestSimpleTableWithEnumT.java (revision 890232f25432b36107d06881e0a25aaa6b473652)
1*890232f2SAndroid Build Coastguard Worker // automatically generated by the FlatBuffers compiler, do not modify
2*890232f2SAndroid Build Coastguard Worker 
3*890232f2SAndroid Build Coastguard Worker package MyGame.Example;
4*890232f2SAndroid Build Coastguard Worker 
5*890232f2SAndroid Build Coastguard Worker import java.nio.*;
6*890232f2SAndroid Build Coastguard Worker import java.lang.*;
7*890232f2SAndroid Build Coastguard Worker import java.util.*;
8*890232f2SAndroid Build Coastguard Worker import com.google.flatbuffers.*;
9*890232f2SAndroid Build Coastguard Worker 
10*890232f2SAndroid Build Coastguard Worker class TestSimpleTableWithEnumT {
11*890232f2SAndroid Build Coastguard Worker   private int color;
12*890232f2SAndroid Build Coastguard Worker 
getColor()13*890232f2SAndroid Build Coastguard Worker   public int getColor() { return color; }
14*890232f2SAndroid Build Coastguard Worker 
setColor(int color)15*890232f2SAndroid Build Coastguard Worker   public void setColor(int color) { this.color = color; }
16*890232f2SAndroid Build Coastguard Worker 
17*890232f2SAndroid Build Coastguard Worker 
TestSimpleTableWithEnumT()18*890232f2SAndroid Build Coastguard Worker   public TestSimpleTableWithEnumT() {
19*890232f2SAndroid Build Coastguard Worker     this.color = 2;
20*890232f2SAndroid Build Coastguard Worker   }
21*890232f2SAndroid Build Coastguard Worker }
22*890232f2SAndroid Build Coastguard Worker 
23