The Trunk: Monticello-hjh.530.mcz

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

The Trunk: Monticello-hjh.530.mcz

commits-2
Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-hjh.530.mcz

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

Name: Monticello-hjh.530
Author: hjh
Time: 22 January 2013, 10:27:20.512 pm
UUID: a02278e6-4e36-ca40-ad26-7239863e76cd
Ancestors: Monticello-hjh.529

Updated comments in MCDefinition, MCPackage and MCSnapshot after review by Bert Freudenberg.

=============== Diff against Monticello-nice.528 ===============

Item was changed:
  Object subclass: #MCDefinition
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Monticello-Base'!
  MCDefinition class
  instanceVariableNames: 'instances'!
+
+ !MCDefinition commentStamp: 'hjh 1/22/2013 22:25' prior: 0!
+ A MCDefinition is a model for Smalltalk code. A package snapshot (MCSnapshot) is a collection of these definitions.
+
+ !
  MCDefinition class
  instanceVariableNames: 'instances'!

Item was changed:
  Object subclass: #MCPackage
  instanceVariableNames: 'name'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Monticello-Base'!
+
+ !MCPackage commentStamp: 'hjh 1/22/2013 22:22' prior: 0!
+ MCPackage uses PackageInfo to find out which methods and classes belong to a package.
+
+
+ !

Item was changed:
  Object subclass: #MCSnapshot
  instanceVariableNames: 'definitions'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Monticello-Base'!
+
+ !MCSnapshot commentStamp: 'hjh 1/22/2013 22:26' prior: 0!
+ A MCSnapshot is a snapshot of an MCPackage. It is a collection of MCDefinitions.
+
+ !