xref: /aosp_15_r20/external/flatbuffers/tests/MyGame/Example/StatT.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 StatT {
11   private String id;
12   private long val;
13   private int count;
14 
getId()15   public String getId() { return id; }
16 
setId(String id)17   public void setId(String id) { this.id = id; }
18 
getVal()19   public long getVal() { return val; }
20 
setVal(long val)21   public void setVal(long val) { this.val = val; }
22 
getCount()23   public int getCount() { return count; }
24 
setCount(int count)25   public void setCount(int count) { this.count = count; }
26 
27 
StatT()28   public StatT() {
29     this.id = null;
30     this.val = 0L;
31     this.count = 0;
32   }
33 }
34 
35