mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 12:21:23 +00:00
bulk code format fix (#8707)
This commit is contained in:
@@ -2,27 +2,32 @@
|
||||
|
||||
package NamespaceC;
|
||||
|
||||
import java.nio.*;
|
||||
import java.lang.*;
|
||||
import java.util.*;
|
||||
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 NamespaceA.TableInFirstNST getReferToA1() {
|
||||
return referToA1;
|
||||
}
|
||||
|
||||
public void setReferToA1(NamespaceA.TableInFirstNST referToA1) { this.referToA1 = 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 NamespaceA.SecondTableInAT getReferToA2() {
|
||||
return referToA2;
|
||||
}
|
||||
|
||||
public void setReferToA2(NamespaceA.SecondTableInAT referToA2) {
|
||||
this.referToA2 = referToA2;
|
||||
}
|
||||
|
||||
public TableInCT() {
|
||||
this.referToA1 = null;
|
||||
this.referToA2 = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user