Files
flatbuffers/tests/union_vector/HandFanT.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
370 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 HandFanT {
private int length;
public int getLength() { return length; }
public void setLength(int length) { this.length = length; }
public HandFanT() {
this.length = 0;
}
}