If you look at Class SystemDictionary>>initialize, you will see that StartUpList is a class variable containing an OrderedCollection. You can see it's contents with:
SystemDictionary classPool at: #StartUpList, which I believe contains Classes whose class-side startUp methods (or whatever it's called) should be invoked on startUp.
Shutdown is similar.
Rob
On Mon, Oct 6, 2008 at 8:17 PM, Mark Volkmann
<[hidden email]> wrote:
Looking at the code in SystemDictionary, it seems that StartUpList and ShutDownList should be classes, but when I do a "find class..." it doesn't find them. Where are those and how can I find out what's in them?
---
Mark Volkmann