classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: new jalopy available


From: Michael Koch
Subject: Re: new jalopy available
Date: Wed, 19 Nov 2003 11:50:33 +0100
User-agent: Mutt/1.3.28i

On Mon, Nov 17, 2003 at 06:19:02PM -0700, Tom Tromey wrote:
> Raif Naffah sent me a couple nice jalopy patches to implement things
> from my last wish-list.  I wrote a new patch myself, to get jalopy to
> use tabs for indentation in the way we expect.
> 
> I made a new release with these improvements.  Once again, it is here:
> 
>     ftp://sources.redhat.com/pub/java/jalopy-console-1.0.4.tar.gz
> 
> You'll also want this file, which is the GNU.xml style:
> 
>     ftp://sources.redhat.com/pub/java/GNU.xml
> 
> This is somewhat different from the last one.
> 
> 
> This version seems to be much better.  The strange Point.java change
> has disappeared (I didn't try to find out why).
> 
> At this point I think we are ready to try this version of jalopy for
> real.  I propose we pick a package to reformat and check in.
> Preferably we'd pick something where active work is going on, so we
> could more easily notice whatever jalopy doesn't handle well.
> 
> 
> Long term, we need to find a cvs repository for this version.  We
> should also put GNU.xml into the classpath repository; I'll do this if
> we're all on board for the test drive.

I used this Jalopy version and got a weird indentation in an if
construct:

if (way == X_AXIS
    || (way == LINE_AXIS
    && component.getComponentOrientation().isHorizontal())
    || (way == PAGE_AXIS
    && !component.getComponentOrientation().isHorizontal()))

With XEmacs I got the more correct indention:

if (way == X_AXIS
    || (way == LINE_AXIS
        && component.getComponentOrientation().isHorizontal())
    || (way == PAGE_AXIS
        && !component.getComponentOrientation().isHorizontal()))

I think this should be fixed before we use jalopy.


Michael




reply via email to

[Prev in Thread] Current Thread [Next in Thread]