Agree : +1

   dimiter wrote:

  > Any comments on this?
  > I'd rather like to see this:
  > ................
  > public RTRecord rtRecord(String symbol) {...}
  > public RTRecord rtRecord(String symbol, RTRecordClient client) {...}

   >
   >..

  > Instead if this:
  > ................
  > public RTRecord rtRecord(String symbol) {...}
  > 
  > public RTRecord rtRecord(String symbol, RTRecordClient client) {...}


After creating a mock for ClassDoc (thanks IDEA for [Ctrl-I] ),

I got 50 methods like :

     public Type type()
     {
         return null;
     }

     public boolean isTransient()
     {
         return false;
     }

     ... (48 more methods )


that folded to 150 lines, like :

     public Type type()
     {...}

     public boolean isTransient()
     {...}

     ... (48 * 3 more lines )


I'd rather have 50 lines, like :

     public Type    type()           {...}
     public boolean isTransient()    {...}
     ...

Alain Ravet

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

Reply via email to