Annotation.st
branchjv
changeset 17907 998195c96a6d
parent 17892 d86c8bd5ece3
child 17910 8d796ca8bd1d
equal deleted inserted replaced
17906:c666c2087cc5 17907:998195c96a6d
   473 
   473 
   474 storeOn:aStream
   474 storeOn:aStream
   475 
   475 
   476     aStream nextPutAll: '(Annotation resource: '.
   476     aStream nextPutAll: '(Annotation resource: '.
   477     type storeOn: aStream.
   477     type storeOn: aStream.
   478     value ifNotNil:
   478     value notNil ifTrue:
   479         [aStream nextPutAll: ' value: '.
   479         [aStream nextPutAll: ' value: '.
   480         value storeOn: aStream].    
   480         value storeOn: aStream].    
   481     aStream nextPut:$)
   481     aStream nextPut:$)
   482 
   482 
   483     "Modified: / 16-07-2010 / 11:36:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   483     "Modified: / 16-07-2010 / 11:36:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   484     "Modified: / 29-11-2011 / 11:19:06 / cg"
   484 ! !
   485 ! !
   485 
   486 
   486 !Annotation::Resource methodsFor:'processing'!
   487 !Annotation::Resource methodsFor:'processing'!
   487 
   488 
   488 annotatesClass:aClass
   489 annotatesClass:aClass
   567 ! !
   568 ! !
   568 
   569 
   569 !Annotation class methodsFor:'documentation'!
   570 !Annotation class methodsFor:'documentation'!
   570 
   571 
   571 version
   572 version
   572     ^ '$Header: /cvs/stx/stx/libbasic/Annotation.st,v 1.6 2011/09/09 05:16:45 cg Exp $'
   573     ^ '$Header: /cvs/stx/stx/libbasic/Annotation.st,v 1.7 2011/11/29 10:19:47 cg Exp $'
   573 !
   574 !
   574 
   575 
   575 version_CVS
   576 version_CVS
   576     ^ '§Header: /cvs/stx/stx/libbasic/Annotation.st,v 1.6 2011/09/09 05:16:45 cg Exp §'
   577     ^ 'Header: /cvs/stx/stx/libbasic/Annotation.st,v 1.7 2011/11/29 10:19:47 cg Exp '
   577 !
   578 !
   578 
   579 
   579 version_SVN
   580 version_SVN
   580     ^ '$Id: Annotation.st 10729 2011-10-31 22:19:21Z vranyj1 $'
   581     ^ '$Id: Annotation.st 10751 2011-12-21 22:04:49Z vranyj1 $'
   581 ! !
   582 ! !
   582 
   583 
   583 Annotation initialize!
   584 Annotation initialize!
   584 
   585 
   585 
   586 
   586 
   587 
       
   588