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

Reply via email to