src/JavaAnnotationDictionary.st
branchjk_new_structure
changeset 752 ff7bc6428c9c
child 877 f5a5b93e1c78
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/JavaAnnotationDictionary.st	Fri Apr 08 12:02:36 2011 +0000
@@ -0,0 +1,54 @@
+"{ Package: 'stx:libjava' }"
+
+Dictionary subclass:#JavaAnnotationDictionary
+	instanceVariableNames:'bytes'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Java-Annotations'
+!
+
+JavaAnnotationDictionary class instanceVariableNames:'empty'
+
+"
+ No other class instance variables are inherited by this class.
+"
+!
+
+
+!JavaAnnotationDictionary class methodsFor:'accessing'!
+
+empty
+    empty ifNil: [ empty := self new ].
+    empty beImmutable.
+    ^ empty.
+
+    "Created: / 03-03-2011 / 22:46:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 16-03-2011 / 17:42:15 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
+! !
+
+!JavaAnnotationDictionary methodsFor:'accessing'!
+
+bytes
+
+    ^bytes
+
+    "Created: / 06-02-2011 / 12:41:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+bytes:something
+    bytes := something.
+!
+
+rawAnnotations
+    ^ bytes
+!
+
+rawAnnotations:something
+    bytes := something.
+! !
+
+!JavaAnnotationDictionary class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id$'
+! !