The Trunk: System-fbs.622.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-fbs.622.mcz

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

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

Name: System-fbs.622
Author: fbs
Time: 24 November 2013, 6:39:18.436 pm
UUID: a121b6dd-61d9-7747-917d-622908369191
Ancestors: System-fbs.621

Creating instances based on user input belongs in a higher level package than Collections.

=============== Diff against System-fbs.621 ===============

Item was added:
+ ----- Method: Text class>>fromUser (in category '*System-Support-instance creation') -----
+ fromUser
+ "Answer an instance of me obtained by requesting the user to type a string."
+ "Text fromUser"
+
+ ^ self fromString:
+ (UIManager default request: 'Enter text followed by carriage return')
+ !