On Oct 31, 2008, at 12:45 PM, sergio wrote:


On Oct 31, 2008, at 11:02 AM, Mark Volkmann wrote:

http://www.ociweb.com/mark/programming/Smalltalk.html#Monticello

If it's not clear, let me know and I'll improve it.

okay, i think i am just being dense.

i am not sure how to create a package out of the classes i have just written..

everything else seems to make sense..

I am guilty of glossing over that part in my notes. ;-)
A good explanation of this is on page 125 in "Squeak By Example". Here's the relevant part. For your case its likely that only the first part matters ... just classes in a given class category that you created.

A package named Foo contains: 
1. all class definitions of classes in the category Foo, or in categories with 
names starting with Foo-, and 
2. all method definitions in any class in a protocol named *foo or whose 
name starts with *foo- (when performing this name comparison, the 
case of the letters in the names is ignored), and 
3. all methods in classes in the category Foo, or in a category whose 
name starts with Foo-, except for those methods in protocols whose 
names start with * .

---
Mark Volkmann