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-Thread: 103376,9fc9fc4716c48fb2 X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!feeder1-2.proxad.net!proxad.net!feeder1-1.proxad.net!club-internet.fr!feedme-small.clubint.net!aioe.org!not-for-mail From: Dennis Hoppe Newsgroups: comp.lang.ada Subject: Re: Interface specification in Ada Date: Wed, 11 Jun 2008 23:23:00 +0200 Organization: Aioe.org NNTP Server Message-ID: References: <8bf0fc5b-3eac-4898-835c-93d40aca25e2@z66g2000hsc.googlegroups.com> NNTP-Posting-Host: wZqzBnKRNqkRhtw8TJGEoQ.user.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org In-Reply-To: User-Agent: Thunderbird 2.0.0.14 (Macintosh/20080421) Xref: g2news1.google.com comp.lang.ada:659 Date: 2008-06-11T23:23:00+02:00 List-Id: Hello Christoph, Georg and Robert, thank you for your advices. Indeed Java relieves me of state "this". christoph.grein@eurocopter.com wrote: > You missed the "this" parameter, which is implicit in Java, but > explicit in Ada: > > package Bicycle is > type Object is interface; > > procedure changeCadence (Ob: in out Object; newValue : in Integer) > is abstract; > > etc.