[squeak-dev] The Inbox: ToolBuilder-SUnit-fbs.15.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 8 19:45:30 UTC 2011


A new version of ToolBuilder-SUnit was added to project The Inbox:
http://source.squeak.org/inbox/ToolBuilder-SUnit-fbs.15.mcz

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

Name: ToolBuilder-SUnit-fbs.15
Author: fbs
Time: 8 May 2011, 8:45:15.153 pm
UUID: 8b9a4be6-fc87-ee4d-bd2e-65450239b5ef
Ancestors: ToolBuilder-SUnit-nice.14

A probably largely incomplete implementation of MultiSelectionListStub. It piggybacks on ListStub and adds only support for the "getSelectionList" method.

=============== Diff against ToolBuilder-SUnit-nice.14 ===============

Item was added:
+ ListStub subclass: #MultiSelectionListStub
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'ToolBuilder-SUnit'!

Item was added:
+ ----- Method: MultiSelectionListStub>>update: (in category 'events') -----
+ update: aSelector
+ 	aSelector = spec getSelectionList ifTrue: [^ self refreshList].
+ 	^ super update: aSelector!

Item was added:
+ ----- Method: SUnitToolBuilder>>buildPluggableMultiSelectionList: (in category 'building') -----
+ buildPluggableMultiSelectionList: aSpec
+ 	| widget |
+ 	widget := MultiSelectionListStub fromSpec: aSpec.
+ 	self register: widget id: aSpec name.
+ 	^ widget.!




More information about the Squeak-dev mailing list