For example, if you have a simple loop over the elements of 
a vector and you change the type of the vector into e.g. Iterator,
it would be nice to automatically change the loop appropriately.

this is only turning
        Object o = (Object) content.elementAt(i);
into
        Object o = (Object) content.next();
inside the loop, and
        for (int i = 0; i < content.size(); i++)
into
        while (content.hasNext())

I know, this is "template recognition" again - but it should
be possible?! ;-)




________________________________________________________________
Keine verlorenen Lotto-Quittungen, keine vergessenen Gewinne mehr! 
Beim WEB.DE Lottoservice: http://tippen2.web.de/?x=13



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

Reply via email to