mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
* [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521) * [Java] ObjectAPI implementation (#6521)
This commit is contained in:
34
tests/MyGame/Example/StatT.java
Normal file
34
tests/MyGame/Example/StatT.java
Normal file
@@ -0,0 +1,34 @@
|
||||
// automatically generated by the FlatBuffers compiler, do not modify
|
||||
|
||||
package MyGame.Example;
|
||||
|
||||
import java.nio.*;
|
||||
import java.lang.*;
|
||||
import java.util.*;
|
||||
import com.google.flatbuffers.*;
|
||||
|
||||
public class StatT {
|
||||
private String id;
|
||||
private long val;
|
||||
private int count;
|
||||
|
||||
public String getId() { return id; }
|
||||
|
||||
public void setId(String id) { this.id = id; }
|
||||
|
||||
public long getVal() { return val; }
|
||||
|
||||
public void setVal(long val) { this.val = val; }
|
||||
|
||||
public int getCount() { return count; }
|
||||
|
||||
public void setCount(int count) { this.count = count; }
|
||||
|
||||
|
||||
public StatT() {
|
||||
this.id = null;
|
||||
this.val = 0L;
|
||||
this.count = 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user