[squeak-dev] The Trunk: System-mha.362.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 26 07:03:36 UTC 2010


Michael Haupt uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mha.362.mcz

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

Name: System-mha.362
Author: mha
Time: 26 August 2010, 9:03:04.776 am
UUID: 54a02fd0-31d0-4a23-af2e-0d8410ff82b9
Ancestors: System-hjh.361

Added an example to the comment of SystemNavigation.
(Submitted by Hannes Hirzel.)

=============== Diff against System-nice.360 ===============

Item was changed:
  Object subclass: #SystemNavigation
  	instanceVariableNames: 'browserClass hierarchyBrowserClass'
  	classVariableNames: 'Default'
  	poolDictionaries: ''
  	category: 'System-Support'!
  
+ !SystemNavigation commentStamp: 'mha 8/26/2010 09:02' prior: 0!
- !SystemNavigation commentStamp: 'sd 4/15/2003 22:30' prior: 0!
  I support the navigation of the system. I act as a facade but as I could require some state
+ or different way of navigating the system all my behavior are on the instance side.
+ 
+ 
+ For example if you want to look at all methods you have written or changed in the current image do
+ 
+ SystemNavigation new browseAllSelect: [ :method |
+        method fileIndex > 1 "only look at changes file"
+        and: [ method timeStamp beginsWith: 'your-initials-here' ] ].
+ 
+ !
- or different way of navigating the system all my behavior are on the instance side!




More information about the Squeak-dev mailing list