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 X-Google-Thread: 103376,91ec3b1c30b751e5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-03 20:39:47 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: larrybar@eng.auburn.edu (Larry A Barowski) Newsgroups: comp.lang.ada Subject: Re: cross-platform source code editor Date: 3 Apr 2002 20:35:42 -0800 Organization: http://groups.google.com/ Message-ID: <76e741cc.0204032035.836d025@posting.google.com> References: NNTP-Posting-Host: 67.216.33.148 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1017894942 18097 127.0.0.1 (4 Apr 2002 04:35:42 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 4 Apr 2002 04:35:42 GMT Xref: archiver1.google.com comp.lang.ada:22077 Date: 2002-04-04T04:35:42+00:00 List-Id: M�rio Amado Alves wrote in message news:... > > Emacs is certainly better now than it used to be, with Customization > options on > > the menus. > > Yes, but not enough for me. I still find the structure and operation > confusing. But the again, it might be merely subjective. > > >> BTW in my opinion the best free editor for readability out there is > >> jGRASP. I'm planning to reinstall it. Hope the few bugs it had some > >> time ago are smashed by now. > > > That's presumably a java tool - isn't it dog slow? > > Yes it is written in Java. (It used to be in C, I think.) But no, it is > not slow. And does prety complex things too. You should have a look see. > /* As was already noted here on CLA, Java's reputation for being slow is > mostly false. */ > On a fairly new machine speed is not a problem. jGRASP is usable on a P300. On a P500, startup time and first-time dialog popup time may be just a bit annoying. On anything much faster than that, you won't worry about speed. It is a bit slower on Linux than Windows, and if you run under JDK 1.2.X, significantly slower than on JDK 1.3 or higher. Java itself is not slow, but the Swing gui library is when compared to others (Swing is also very flexible and allows rapid gui development). CSD diagram generation in jGRASP, which is mostly array access, takes about 2.5 times longer in Java than in C, and Java is doing array bounds checking while C is not. -Larry Barowski (jGRASP developer) > --MAA