...
1// automatically generated by the FlatBuffers compiler, do not modify
2
3package MyGame.Example;
4
5import com.google.flatbuffers.BaseVector;
6import com.google.flatbuffers.BooleanVector;
7import com.google.flatbuffers.ByteVector;
8import com.google.flatbuffers.Constants;
9import com.google.flatbuffers.DoubleVector;
10import com.google.flatbuffers.FlatBufferBuilder;
11import com.google.flatbuffers.FloatVector;
12import com.google.flatbuffers.IntVector;
13import com.google.flatbuffers.LongVector;
14import com.google.flatbuffers.ShortVector;
15import com.google.flatbuffers.StringVector;
16import com.google.flatbuffers.Struct;
17import com.google.flatbuffers.Table;
18import com.google.flatbuffers.UnionVector;
19import java.nio.ByteBuffer;
20import java.nio.ByteOrder;
21
22public class StatT {
23 private String id;
24 private long val;
25 private int count;
26
27 public String getId() { return id; }
28
29 public void setId(String id) { this.id = id; }
30
31 public long getVal() { return val; }
32
33 public void setVal(long val) { this.val = val; }
34
35 public int getCount() { return count; }
36
37 public void setCount(int count) { this.count = count; }
38
39
40 public StatT() {
41 this.id = null;
42 this.val = 0L;
43 this.count = 0;
44 }
45}
46
View as plain text