Currently, a method separator will only appear before the 2nd method :
    see [*0] in the code below.
    

Request : additional separators, 
          between methods, but also 
          between group of members (access based)
          
I'd like them to appear (could be an option)

  *1 : before the first method/constructor

  *2..*5
     : between variable groups, based on access level.

  *6
     : between constants and variables.
     
Code example :
----------------     

*6
      private static final MAX_LOOPS = 100 ;
*5
        private     int         __count = 0  ;
        private     int         __total = 0  ;
*4      
        protected   int   _nof_calls   ;
*3      
        public      int   someValue    ;

        
*1      
      public void firstMethod () {...

*0
      public void secondMethod () {...
      

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

Reply via email to