>>>>> "Christine" == Christine Wolfe <cwd...@earthlink.net> writes:
Christine> I created a class, SymbolArray, that is a subclass of Christine> OrderedCollection with the following initialize method. Each of the Christine> items I'm adding (SymbolBlank, SymbolGet, etc) is an imageMorph. Ahh, there's the mistake... missed it before. You really really really do *not* want to create a subclass of OrderedCollection. Your object will *have* an OrderedCollection, but should not *be* one. If you want to respond to all of the protocol of OrderedCollection, feel free to delegate it to your actual instance variable. Yes, it's a bright shiny object to want to subclass that, but just like subclassing SmallInteger, it's both legal and dumb. :) -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 <mer...@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/> Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc. See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion _______________________________________________ Beginners mailing list Beginners@lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners