JavaMirror.st
branchdevelopment
changeset 1849 96895c73d62c
parent 1848 b508cc4d4bf0
child 1850 57d1aafbf884
--- a/JavaMirror.st	Sat Dec 01 21:19:57 2012 +0000
+++ b/JavaMirror.st	Sat Dec 01 21:44:20 2012 +0000
@@ -249,7 +249,7 @@
             put: (reflection javaClassObjectArrayForClasses: exceptionClasses);
         instVarNamed: #annotations put: annotations runtimeVisible bytes;
         instVarNamed: #parameterAnnotations
-            put: annotations rawParamAnnotations bytes.
+            put: annotations visibleParameterAnnotations bytes.
     (method isJavaMethod and: [ method signature notNil ]) ifTrue: [
         ctorOrMethod instVarNamed: #signature
             put: (reflection javaStringObjectForString: method signature interned: true)
@@ -257,7 +257,7 @@
     ^ ctorOrMethod
 
     "Created: / 01-08-2012 / 10:24:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 01-12-2012 / 22:10:33 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
+    "Modified: / 01-12-2012 / 22:39:50 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
 createConstructorFor: class method: method signature: signature modifiers: modifiers parameterTyoes: parameterClasses exceptionTypes: exceptionClasses annotations: annotations