Build 602
The setting for alphabetical sorting on the Override method and
Implement method should be independent. This is because when overriding
a method, I am often searching for one or a few out of possibly many and
hence want that list sorted. When I am implementing methods, however, I
will usually want to implement all of them and will then prefer their
logical order.
***
Typecasting to a collection will now offer the option of creating a new
instance. For example:
java.util.ArrayList list;
list = (
Using smart type code completion after the "(" will yield two options:
ArrayList new java.util.ArrayList()
java.util.ArrayList
The first selection will result in:
java.util.ArrayList list;
list = (new java.util.ArrayList()
Since this would never be compatible with the original syntax, that
option probably shouldn't be present when the cursor is following a left
parenthesis (hence indicating a typecast).
Kirk
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list