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=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,306c0e782f999b0e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-10-22 20:18:20 PST Path: supernews.google.com!sn-xit-02!sn-xit-03!supernews.com!freenix!enst!enst.fr!not-for-mail From: "Alexey V. Litvinov" Newsgroups: comp.lang.ada Subject: RE: Booch components Date: Mon, 23 Oct 2000 14:20:26 +1100 Organization: ENST, France Message-ID: Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Trace: menuisier.enst.fr 972271092 15407 137.194.161.2 (23 Oct 2000 03:18:12 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: 23 Oct 2000 03:18:12 GMT To: Return-Path: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0beta5 Precedence: bulk List-Id: comp.lang.ada mail<->news gateway Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: supernews.google.com comp.lang.ada:1480 Date: 2000-10-23T03:18:12+00:00 -----Original Message----- From: comp.lang.ada-admin@ada.eu.org [mailto:comp.lang.ada-admin@ada.eu.org]On Behalf Of Simon Wright Sent: Thursday, October 19, 2000 8:29 AM To: comp.lang.ada@ada.eu.org Subject: Re: Booch components >Could you possibly set your newsreader not to generate these '=20' >characters? I think it may have something to do with "quoted >printable" I wrote message from other computer, and don't check options. Sorry. >> With little diffirent mechanism of deleting/appending of >> records from Dbase-like. Because I'll have little couple=20 >> of deleted records with my application and I don't wish=20 >> make packing of table, I decide use unbounded queue for list=20 >> of deleted records and use values from it when I need to=20 >> append new records). >Unless you really need the polymorphic aspects of Lists, I *strongly* >recomment that you use Collections. Later, I decide to use queues, since I wish to use place of older deleted record for new one. >> >> package Containers is new BC.Containers(Item =3D> DEItem); >The problem is that the BCs are based on tagged types; and you can >only derive new tagged types in a package *spec*. Move all these >instantiations into the spec and you should be OK. Thanks, I'll try. >> >> type Container is abstract new Ada.Finalization.Controlled with null = >> record; >> >?? I don't see what you think is wrong here? :) Nothing wrong, I just place this for quick refernce of others.