Java: Added access object for vector of struct and vector of tables. (#5233)
authorKulikov Alexey <kulikov.alexey90@gmail.com>
Mon, 23 Sep 2019 16:22:43 +0000 (23:22 +0700)
committerWouter van Oortmerssen <aardappel@gmail.com>
Mon, 23 Sep 2019 16:22:43 +0000 (09:22 -0700)
commite365c502ffc659752f9b7a8d60b0052a07e33659
tree0d4ef498e8efdd59c561020c92d191eefe3c9baa
parent97f3aa91746a7d207513a73725e92cee7c35bb87
Java: Added access object for vector of struct and vector of tables. (#5233)

* Java: Added access object for vector of struct and vector of tables.

* Java: Workarounds removed when accessing the union vector.
40 files changed:
java/com/google/flatbuffers/BaseVector.java [new file with mode: 0644]
java/com/google/flatbuffers/BooleanVector.java [new file with mode: 0644]
java/com/google/flatbuffers/ByteVector.java [new file with mode: 0644]
java/com/google/flatbuffers/DoubleVector.java [new file with mode: 0644]
java/com/google/flatbuffers/FloatVector.java [new file with mode: 0644]
java/com/google/flatbuffers/IntVector.java [new file with mode: 0644]
java/com/google/flatbuffers/LongVector.java [new file with mode: 0644]
java/com/google/flatbuffers/ShortVector.java [new file with mode: 0644]
java/com/google/flatbuffers/StringVector.java [new file with mode: 0644]
java/com/google/flatbuffers/Table.java
java/com/google/flatbuffers/UnionVector.java [new file with mode: 0644]
net/FlatBuffers/Table.cs
samples/SampleBinary.java
src/idl_gen_general.cpp
tests/JavaTest.java
tests/MyGame/Example/Ability.java
tests/MyGame/Example/ArrayStruct.java
tests/MyGame/Example/ArrayTable.java
tests/MyGame/Example/Monster.cs
tests/MyGame/Example/Monster.java
tests/MyGame/Example/NestedStruct.java
tests/MyGame/Example/Referrable.java
tests/MyGame/Example/Stat.java
tests/MyGame/Example/Test.java
tests/MyGame/Example/TestSimpleTableWithEnum.java
tests/MyGame/Example/TypeAliases.java
tests/MyGame/Example/Vec3.java
tests/MyGame/Example2/Monster.java
tests/MyGame/InParentNamespace.java
tests/MyGame/MonsterExtra.java
tests/namespace_test/NamespaceA/NamespaceB/StructInNestedNS.java
tests/namespace_test/NamespaceA/NamespaceB/TableInNestedNS.java
tests/namespace_test/NamespaceA/SecondTableInA.java
tests/namespace_test/NamespaceA/TableInFirstNS.java
tests/namespace_test/NamespaceC/TableInC.java
tests/union_vector/Attacker.java
tests/union_vector/BookReader.java
tests/union_vector/Movie.cs
tests/union_vector/Movie.java
tests/union_vector/Rapunzel.java