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,cfcf6e3e7ade5a74 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-05-24 11:54:02 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!skynet.be!skynet.be!proxad.net!proxad.net!wanadoo.fr!not-for-mail From: Pascal Obry Newsgroups: comp.lang.ada Subject: Re: Free Ada UML tools Available / Date: 24 May 2002 20:54:01 +0200 Organization: Home - http://perso.wanadoo.fr/pascal.obry Message-ID: References: <3CED3807.5378EC9D@lmco.nospammmmmm.com> NNTP-Posting-Host: avelizy-103-1-3-22.abo.wanadoo.fr Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: wanadoo.fr 1022266442 9432 217.128.47.22 (24 May 2002 18:54:02 GMT) X-Complaints-To: abuse@wanadoo.fr NNTP-Posting-Date: 24 May 2002 18:54:02 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:24668 Date: 2002-05-24T18:54:02+00:00 List-Id: Preben Randhol writes: > On 23 May 2002 22:16:22 +0200, Pascal Obry wrote: > > I don't think one exists. One nice free UML tool is ArgoUML, it support > Yes, Dia + dia2code. I had a look at the Ada generated code on the Dia website: << with shape_types; use shape_types package window_types is type Window is tagged record -- Attributes -- private: visualrep: Shape; end record; -- Operations -- public: virtual function redraw return void = 0; end window_types; >> "virtual" and "void = 0" ??? << package point_types is type Point is tagged record -- Attributes -- private: x: float; y: float; end record; -- Operations -- public: function Point ( x: float, ) y: float ) return ; function getX return float; function getY return float; end point_types; >> "float, ) y: float" ??? The private attributes should be generated: << type Private_Attributes is private; type Window is tagges record x, y : Integer; Priv : Private_Attributes; end record; private type Private_Attribute is record ... >> As somebody said there is room for improvement ! But it is certainly a good starting point... Pascal. -- --|------------------------------------------------------ --| Pascal Obry Team-Ada Member --| 45, rue Gabriel Peri - 78114 Magny Les Hameaux FRANCE --|------------------------------------------------------ --| http://perso.wanadoo.fr/pascal.obry --| "The best way to travel is by means of imagination" --| --| gpg --keyserver wwwkeys.pgp.net --recv-key C1082595