JavaMethodAnnotationContainer.st
branchdevelopment
changeset 1848 b508cc4d4bf0
parent 1818 2e5ed72e7dfd
child 1849 96895c73d62c
--- a/JavaMethodAnnotationContainer.st	Sat Dec 01 13:05:45 2012 +0000
+++ b/JavaMethodAnnotationContainer.st	Sat Dec 01 21:19:57 2012 +0000
@@ -21,8 +21,8 @@
 "{ Package: 'stx:libjava' }"
 
 JavaAnnotationContainer subclass:#JavaMethodAnnotationContainer
-	instanceVariableNames:'annotationDefault rawAnnotations visibleParameterAnnotations
-		invisibleParameterAnnotations'
+	instanceVariableNames:'annotationDefault rawAnnotations rawParamAnnotations
+		visibleParameterAnnotations invisibleParameterAnnotations'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'Languages-Java-Annotations'
@@ -94,6 +94,14 @@
 
 rawAnnotations:something
     rawAnnotations := something.
+!
+
+rawParamAnnotations
+    ^ rawParamAnnotations
+!
+
+rawParamAnnotations:something
+    rawParamAnnotations := something.
 ! !
 
 !JavaMethodAnnotationContainer methodsFor:'initialization'!