[squeak-dev] The Trunk: System-fbs.578.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jul 25 20:05:50 UTC 2013


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

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

Name: System-fbs.578
Author: fbs
Time: 25 July 2013, 9:05:20.523 pm
UUID: ead81047-ea15-3b4c-a4f2-166832410419
Ancestors: System-fbs.577

Move ProgressNotification to Collections. Even though it's not hugely Collection-y, it's used by low level packages, and it's usually used to signal processing a collection of things.

=============== Diff against System-fbs.577 ===============

Item was removed:
- Notification subclass: #ProgressNotification
- 	instanceVariableNames: 'amount done extra'
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'System-Exceptions'!
- 
- !ProgressNotification commentStamp: '<historical>' prior: 0!
- Used to signal progress without requiring a specific receiver to notify. Caller/callee convention could be to simply count the number of signals caught or to pass more substantive information with #signal:.!

Item was removed:
- ----- Method: ProgressNotification class>>signal:extra: (in category 'exceptionInstantiator') -----
- signal: signalerText extra: extraParam
- 	"TFEI - Signal the occurrence of an exceptional condition with a specified textual description."
- 
- 	| ex |
- 	ex := self new.
- 	ex extraParam: extraParam.
- 	^ex signal: signalerText!

Item was removed:
- ----- Method: ProgressNotification>>amount (in category 'accessing') -----
- amount
- 	^amount!

Item was removed:
- ----- Method: ProgressNotification>>amount: (in category 'accessing') -----
- amount: aNumber
- 	amount := aNumber!

Item was removed:
- ----- Method: ProgressNotification>>done (in category 'accessing') -----
- done
- 	^done!

Item was removed:
- ----- Method: ProgressNotification>>done: (in category 'accessing') -----
- done: aNumber
- 	done := aNumber!

Item was removed:
- ----- Method: ProgressNotification>>extraParam (in category 'accessing') -----
- extraParam
- 	^extra!

Item was removed:
- ----- Method: ProgressNotification>>extraParam: (in category 'accessing') -----
- extraParam: anObject
- 	extra := anObject!



More information about the Squeak-dev mailing list