At 09:00 18.03.02 +0100, you wrote:

>"Thomas Singer" wrote
> > Why not use SUN's coding conventions?
>
>Why not use SUN's Forte?

Because it produces a terrible mix of tabs and spaces.

Tom


>Alain
>
>
> > At 14:05 17.03.02 +0100, you wrote:
> > >I keep reformating getters/setters, flattening the 4 lines into 1,
> > >from :
> > >
> > >     public Date getDate()
> > >     {
> > >         return __date;
> > >     }
> > >
> > >     public void setDate( Date i_date )
> > >     {
> > >         __date = i_date;
> > >     }
> > >
> > >
> > >to
> > >
> > >     public Date     getDate()                   {   return __date   ;  }
> > >     public void     setDate( Date newVal )      {   __date = newVal ;  }
> > >
> > >
> > >I had to
> > >   - merge the lines
> > >   - align the elements
> > >   - rename the parameter (to 'newVal')
> > >   - stick the 2 lines together
> > >
> > >
> > >
> > >IDEA could/should help me here.
> > >
> > >Alain Ravet
>
>
>
>_______________________________________________
>Eap-features mailing list
>[EMAIL PROTECTED]
>http://www.intellij.com/mailman/listinfo/eap-features


_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features

Reply via email to