src/JavaAnnotationNestedAnnotationValue.st
branchjk_new_structure
changeset 752 ff7bc6428c9c
child 877 f5a5b93e1c78
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/JavaAnnotationNestedAnnotationValue.st	Fri Apr 08 12:02:36 2011 +0000
@@ -0,0 +1,33 @@
+"{ Package: 'stx:libjava' }"
+
+JavaAnnotationValue subclass:#JavaAnnotationNestedAnnotationValue
+	instanceVariableNames:'annotationIndex'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Java-Reader-Support'
+!
+
+
+!JavaAnnotationNestedAnnotationValue methodsFor:'accessing'!
+
+annotationIndex
+    ^ annotationIndex
+!
+
+annotationIndex:something
+    annotationIndex := something.
+!
+
+value
+    "superclass JavaAnnotationValue says that I am responsible to implement this method"
+
+    ^ self constantPool at: annotationIndex.
+
+    "Modified: / 17-12-2010 / 14:44:38 / Marcel Hlopko <hlopik@gmail.com>"
+! !
+
+!JavaAnnotationNestedAnnotationValue class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id$'
+! !