Alphabetically, "max" comes before "min"

=> IDEA would create the following constructor

   public Requirements  (int maxSize, int minSize) {
      __maxSize = maxSize ;
      __minSize = minSize ;
   }

while most of us - ? - would prefer :

   public Requirements  (int minSize, int maxSize) {..

=> request : add a way to change the order of the parameters when inserting
a constructor.
(same request for getters/setters)

Alain Ravet


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

Reply via email to