The Trunk: System-dtl.643.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-dtl.643.mcz

commits-2
David T. Lewis uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-dtl.643.mcz

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

Name: System-dtl.643
Author: dtl
Time: 14 December 2013, 4:33:07.612 pm
UUID: 7e5b678e-2c1a-4069-975d-78fd7be1ef34
Ancestors: System-fbs.642

Make the emergency evaluator work in Morphic if MVC is not present, and vice versa.
Add two abstract methods for Transcripter support.

=============== Diff against System-fbs.642 ===============

Item was added:
+ ----- Method: Project>>displayTranscripter: (in category 'transcripter') -----
+ displayTranscripter: transcripter
+ "A transcripter is a minimal user interface to support an emergency evaluator.
+ Different kinds of project may use different paragraph implementations."
+ self subclassResponsibility!

Item was added:
+ ----- Method: Project>>initializeParagraphForTranscripter: (in category 'transcripter') -----
+ initializeParagraphForTranscripter: transcripter
+ "A transcripter is a minimal user interface to support an emergency evaluator.
+ Different kinds of project may use different paragraph implementations."
+ self subclassResponsibility!