Adding a native method to handle getBounds() with a default answer: java.lang.Object
[jpf-core.git] / src / classes / sun / reflect / generics / reflectiveObjects / TypeVariableImpl.java
index c77a3a516323003565c5b07e88c8a9594c372d62..7abc7e3654ba499f48a3a436d69396ee809ea6a8 100644 (file)
@@ -59,11 +59,11 @@ public class TypeVariableImpl<D extends GenericDeclaration>
         return new TypeVariableImpl<T>(decl, name, bs, f);
     }
 
-    public Type[] getBounds() {
+    public native Type[] getBounds();
+    /*public Type[] getBounds() {
 
         throw new UnsupportedOperationException();
-        //return new Type[0];
-    }
+    }*/
 
     public D getGenericDeclaration(){
         throw new UnsupportedOperationException();