Java support for passing vec<STRUCT-TYPE> and STRUCT-TYPE[] to and from methods.

Bug: 31380705
Change-Id: I7374538d0bc2b3562c997710bfa4ed1f95950589
diff --git a/Type.cpp b/Type.cpp
index eca9bb7..40a4413 100644
--- a/Type.cpp
+++ b/Type.cpp
@@ -50,6 +50,10 @@
     return false;
 }
 
+bool Type::isCompoundType() const {
+    return false;
+}
+
 const ScalarType *Type::resolveToScalarType() const {
     return NULL;
 }