JavaMethodAnnotationContainer.st
branchdevelopment
changeset 1850 57d1aafbf884
parent 1849 96895c73d62c
child 1864 60a8dc26c8c6
--- a/JavaMethodAnnotationContainer.st	Sat Dec 01 21:44:20 2012 +0000
+++ b/JavaMethodAnnotationContainer.st	Sat Dec 01 21:56:51 2012 +0000
@@ -21,7 +21,7 @@
 "{ Package: 'stx:libjava' }"
 
 JavaAnnotationContainer subclass:#JavaMethodAnnotationContainer
-	instanceVariableNames:'annotationDefault rawAnnotations visibleParameterAnnotations
+	instanceVariableNames:'annotationDefault rawParamAnnotations visibleParameterAnnotations
 		invisibleParameterAnnotations'
 	classVariableNames:''
 	poolDictionaries:''
@@ -88,12 +88,16 @@
     "Created: / 16-03-2011 / 17:21:46 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-rawAnnotations
-    ^ rawAnnotations
+rawParamAnnotations
+    ^ rawParamAnnotations
+
+    "Created: / 01-12-2012 / 22:54:04 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
-rawAnnotations:something
-    rawAnnotations := something.
+rawParamAnnotations: something 
+    rawParamAnnotations := something.
+
+    "Created: / 01-12-2012 / 22:54:11 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
 !
 
 visibleParameterAnnotations