mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
34 lines
738 B
Java
34 lines
738 B
Java
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
package NamespaceC;
|
|
|
|
import com.google.flatbuffers.*;
|
|
import java.nio.*;
|
|
import java.util.*;
|
|
|
|
public class TableInCT {
|
|
private NamespaceA.TableInFirstNST referToA1;
|
|
private NamespaceA.SecondTableInAT referToA2;
|
|
|
|
public NamespaceA.TableInFirstNST getReferToA1() {
|
|
return referToA1;
|
|
}
|
|
|
|
public void setReferToA1(NamespaceA.TableInFirstNST referToA1) {
|
|
this.referToA1 = referToA1;
|
|
}
|
|
|
|
public NamespaceA.SecondTableInAT getReferToA2() {
|
|
return referToA2;
|
|
}
|
|
|
|
public void setReferToA2(NamespaceA.SecondTableInAT referToA2) {
|
|
this.referToA2 = referToA2;
|
|
}
|
|
|
|
public TableInCT() {
|
|
this.referToA1 = null;
|
|
this.referToA2 = null;
|
|
}
|
|
}
|