xref: /aosp_15_r20/external/flatbuffers/tests/union_vector/BookReaderT.java (revision 890232f25432b36107d06881e0a25aaa6b473652)
1 // automatically generated by the FlatBuffers compiler, do not modify
2 
3 import java.nio.*;
4 import java.lang.*;
5 import java.util.*;
6 import com.google.flatbuffers.*;
7 
8 public class BookReaderT {
9   private int booksRead;
10 
getBooksRead()11   public int getBooksRead() { return booksRead; }
12 
setBooksRead(int booksRead)13   public void setBooksRead(int booksRead) { this.booksRead = booksRead; }
14 
15 
BookReaderT()16   public BookReaderT() {
17     this.booksRead = 0;
18   }
19 }
20 
21