[squeak-dev] The Trunk: Tools-fbs.436.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 3 22:52:44 UTC 2013


Frank Shearar uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-fbs.436.mcz

==================== Summary ====================

Name: Tools-fbs.436
Author: fbs
Time: 3 January 2013, 10:52:03.574 pm
UUID: 59e6b080-bf82-4a6a-8c6b-f3a4e8952453
Ancestors: Tools-fbs.435

We already have the organization in classOrganizer. CodeHolder's version goes and looks it up.

=============== Diff against Tools-fbs.435 ===============

Item was added:
+ ----- Method: Browser>>annotationForClassCommentFor: (in category 'class comment pane') -----
+ annotationForClassCommentFor: aClass
+ 	"Provide a line of content for an annotation pane, given that the receiver is pointing at the class comment of the given class."
+ 	| aStamp |
+ 	aStamp :=  classOrganizer commentStamp.
+ 	^ aStamp
+ 		ifNil:
+ 			[self selectedClassName, ' has no class comment']
+ 		ifNotNil:
+ 			['class comment for ', self selectedClassName,
+ 				(aStamp = '<historical>'
+ 					ifFalse:
+ 						[' - ', aStamp]
+ 					ifTrue:
+ 						[''])]!



More information about the Squeak-dev mailing list