Actualy this would be a nice feature, but it should group declarations by 
number of modifiers. Otherwise it usually looks like:
       public  static final String  TRACE_TAG = new String("MODULE1");
       public  static final String  DEF_LOGIN = new String("guest");
       private int                  testInt = 0;
       private Collection           acl;

I would prefer:
       public  static final String  DEF_LOGIN = new String("guest");
       public  static final String  TRACE_TAG = new String("MODULE1");

       private Collection acl;
       private int        testInt = 0;

(automatic sorting by access modifier/type/variable name also would help a 
lot)

* Also, I would like to have an option for IDEA to place new fields 
declarations to the bottom of the class. Currently IDEA always generates 
field declarations on top, even when they are private.

* I do not know if this has been requested already, but IDEA does not accept 
URLs in JavaDoc API path. It is not always possible or reasonable to 
download full third party JavaDoc (well, and we have tons of API doc 
published on our internal Web site).

Vlad

>-----Original Message-----
>From: wim.deblauwe
>Sent: Mittwoch, 12. Dezember 2001 13:54
>To: eap-features
>Cc: wim.deblauwe
>Subject: [Eap-features] align class variables
>
>
>It would be nice in my opinion to have an option in the formatting to
>keep
>this:
>
>
>       private int       testInt = 0;
>       private int       j;
>       private Vector    v = new Vector();
>       private Runnable  runnable;
>
>So the variable names are all aligned.
>I find this easier readable and also a bit 'nicer'.
>
>Wim
>
>-------------
>Ing. Wim Deblauwe
>BarcoView
>Medical Imaging Systems
>
>_______________________________________________
>Eap-features mailing list
>[EMAIL PROTECTED]
>http://www.intellij.com/mailman/listinfo/eap-features
>
>
>
>Visit our website at http://www.ubswarburg.com
>
>This message contains confidential information and is intended only
>for the individual named.  If you are not the named addressee you
>should not disseminate, distribute or copy this e-mail.  Please
>notify the sender immediately by e-mail if you have received this
>e-mail by mistake and delete this e-mail from your system.
>
>E-mail transmission cannot be guaranteed to be secure or error-free
>as information could be intercepted, corrupted, lost, destroyed,
>arrive late or incomplete, or contain viruses.  The sender therefore
>does not accept liability for any errors or omissions in the contents
>of this message which arise as a result of e-mail transmission.  If
>verification is required please request a hard-copy version.  This
>message is provided for informational purposes and should not be
>construed as a solicitation or offer to buy or sell any securities or
>related financial instruments.
>
>
>_______________________________________________
>Eap-features mailing list
>[EMAIL PROTECTED]
>http://www.intellij.com/mailman/listinfo/eap-features




_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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

Reply via email to