From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40996 invoked by alias); 9 Nov 2017 09:11:49 -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 40982 invoked by uid 89); 9 Nov 2017 09:11:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.2 spammy=HX-Received:Thu, H*c:alternative, Japan, japan X-HELO: mail-wm0-f42.google.com Received: from mail-wm0-f42.google.com (HELO mail-wm0-f42.google.com) (74.125.82.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 09 Nov 2017 09:11:47 +0000 Received: by mail-wm0-f42.google.com with SMTP id t139so16067326wmt.1 for ; Thu, 09 Nov 2017 01:11:46 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=SLO9gRWPjXdEJkL9SFoVXyYvbb5hOXOxfXLLRyk4qbw=; b=TMuaLSStzxwrMBoa0mMbu/vE9YdNfR053MVS1/gUoP/s2GEQH4/6ZubRpJF+3oOGEF jvLq1Ym/YXxqyUnFwTAB2qFIr+6kUCZZfhEHbIg3gIU1f+/3DTBom2mXN8ZH1UJKJvIE 8VDBKsDafyecThfknYqO5HNcUKF1/D0+ue98CpTAAqGI0HkgFPGg7yl+jhX2oOL0b2/Z aM+hU298O/iFzBSjje7HziL1LMouOYvMecfOASBK83x5uMcke5MEn0Df3sWcuhVqn+i3 HQMldcNhNqmxE7ikLInbEmOYMTzWHV89oKk3Jle2QJ00bScZ+KrbNXEp4ezS31IMK/b9 in/g== X-Gm-Message-State: AJaThX4yNbrIv2MxR77QMWKYja7w30PRvXO7KodFdhkQ2AO2Va6vID5G X6fIMBJEffyLwqBQdHMi4vhfKpOp4EqerbGkQ30= X-Google-Smtp-Source: ABhQp+SW7fE6iUpQMT8dL7Zmh09huRjTsNT7eAYMlsMnC7hzNw+bRZYSD2ecGZ8UM6nqTM0TEEyotThqei1KVzhqQoY= X-Received: by 10.80.244.2 with SMTP id r2mr4473039edm.26.1510218705220; Thu, 09 Nov 2017 01:11:45 -0800 (PST) MIME-Version: 1.0 Received: by 10.80.211.2 with HTTP; Thu, 9 Nov 2017 01:11:24 -0800 (PST) In-Reply-To: References: From: Tom Bousso Date: Thu, 09 Nov 2017 09:11:00 -0000 Message-ID: Subject: Re: Kawa JTable String[][] arrays To: Fabian Boucsein Cc: kawa@sourceware.org Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-q4/txt/msg00027.txt.bz2 Hi Fabian, You can try something like this: (define data (String[][] (String[] "Japan" "245") (String[] "Abc" "345"))) -Tom On Thu, Nov 9, 2017 at 1:06 AM, Fabian Boucsein wrote: > Hello fellow Kawa scheme users, > > i am experimenting with JTables in Kawa. I'm stuck with the creation of an > String[][] array. > Is ist possible to create one? > > Something like this in Java: > String[][] rowData = { > { "Japan", "245" }, { "USA", "240" }, { "Italy", "220" } > } > > Also i would like to say thank you, for the creation of such a pleasant to > work with Scheme > implementation for the JVM. I love it! > > Kind regards, > Fabian >