From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 79398 invoked by alias); 25 Sep 2015 15:15:11 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 79313 invoked by uid 89); 25 Sep 2015 15:15:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: aibo.runbox.com Received: from aibo.runbox.com (HELO aibo.runbox.com) (91.220.196.211) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 25 Sep 2015 15:15:08 +0000 Received: from [10.9.9.207] (helo=mailfront03.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1ZfUiG-0001l7-1u; Fri, 25 Sep 2015 17:15:04 +0200 Received: from 70-36-239-58.dsl.dynamic.fusionbroadband.com ([70.36.239.58] helo=toshie.bothner.com) by mailfront03.runbox.com with esmtpsa (uid:757155 ) (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.76) id 1ZfUi8-0004kE-6o; Fri, 25 Sep 2015 17:14:56 +0200 Subject: Re: packaging classes in kawa To: Damien Mattei References: <1443119328.2480.4.camel@german-HP-245-G2-Notebook-PC> <56044CD1.2050802@bothner.com> <56050E2E.4010902@unice.fr> <56050F58.4040507@unice.fr> <560547CB.4040000@unice.fr> Cc: kawa@sourceware.org From: Per Bothner Message-ID: <560564EB.9040008@bothner.com> Date: Fri, 25 Sep 2015 15:15:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <560547CB.4040000@unice.fr> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-q3/txt/msg00089.txt.bz2 On 09/25/2015 06:10 AM, Damien Mattei wrote: > great ! > > so the scheme modules map to java packages... No, Scheme modules map to Java *classes*. This is the "module class" itself. They may be additional classes (ones defined by define-class/define-simple-class, and "frame" classes used for closures). This are all in the same package. The frame classes are member classes or inner classes. A define-class is (by default) a member class of the module class; a define-simple-class is (by default) a sibling class (unless it has same name as the module class, in which case they are combined). -- --Per Bothner per@bothner.com http://per.bothner.com/