The Trunk: SystemReporter-mt.27.mcz

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

The Trunk: SystemReporter-mt.27.mcz

commits-2
Marcel Taeumel uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-mt.27.mcz

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

Name: SystemReporter-mt.27
Author: mt
Time: 28 July 2016, 11:32:24.083845 am
UUID: afe89257-ac5a-814d-9bc7-b9f991c3f9aa
Ancestors: SystemReporter-mt.26

The System Reporter tool is created via tool builder and hence should be a model like all other tools created via tool builder.

Note that Model does also have a more efficient management for dependents compared to Object.

=============== Diff against SystemReporter-mt.26 ===============

Item was changed:
+ Model subclass: #SystemReporter
- Object subclass: #SystemReporter
  instanceVariableNames: 'categories categoriesSelected report tinyBenchmarksResult categoryList testRunner spaceAnalysisResult'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'SystemReporter'!
 
  !SystemReporter commentStamp: 'laza 1/18/2011 12:04' prior: 0!
  SystemReporter offers a window where information about the system is gathered. This can be easily copied to the clipboard and be attached to a bug report for better identification of the context the bug occured in.
 
  To extend the SystemReporter:
  - add a method
  reportXYZ: aStream
   to the reporting category
  - insert a line
  add: #XYZ method: #reportXYZ
   to the initialize method
  !