From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,fba93c19bb4e7dbd X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-15 10:22:51 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!sn-xit-03!sn-xit-06!sn-post-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Q: Endless loop by dispatching Date: Tue, 15 Jul 2003 12:23:29 -0500 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <3F0ED2C8.6080409@snafu.de> X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 X-Complaints-To: abuse@supernews.com Xref: archiver1.google.com comp.lang.ada:40295 Date: 2003-07-15T12:23:29-05:00 List-Id: "Dmitry A. Kazakov" wrote in message news:h5c7hvgol0sscrnaj98qp071903m9hoh5c@4ax.com... > Probably it is worth to think how to eliminate any need in Y'Parent? > For example one could provide some sort of overriding by extension. > I.e. the bodies which would implicitly call the overriden body, as it > is manually made in Initialize/Finalize. Interesting idea, but you'd need some way to specify when the overridden body is called. For instance, you usually call the overridden body first for Initialize (so the parent components are Initialized before you do anything) and last for Finalize (so the parent components still exist while you are writing your code). I've even had a few cases where I had to do it in the middle (with operations before an after it). Randy.