Files
flatbuffers/tests/union_vector/FallingTubT.java
Taiju Tsuiki 587bbd49a7 [C++] Fix compile failure on Object API union construction for struct member (#6923)
* Add dedicated traits to Object API version of unions.

* Add suppression for unused parameters on unions of structs.
2021-11-18 10:55:11 -08:00

21 lines
376 B
Java

// automatically generated by the FlatBuffers compiler, do not modify
import java.nio.*;
import java.lang.*;
import java.util.*;
import com.google.flatbuffers.*;
public class FallingTubT {
private int weight;
public int getWeight() { return weight; }
public void setWeight(int weight) { this.weight = weight; }
public FallingTubT() {
this.weight = 0;
}
}