[ANN] MoveElementPlugin-0.1 released
http://www.intellij.org/twiki/bin/view/Main/MoveElementPlugin
http://sourceforge.net/projects/tz-ip/
Works only with Aurora (tested with #896).
0.1 (#896) - Aug 25, 2003
- Call parameters moving, f(|0, 1) -> f(1, |0).
Note that it just moves parameters without touching the method signature.
Timur
请先登录再写评论。
0.2 (#896) - Aug 26, 2003
- Class member (method, field, instance/static initializer, class/interface) moving.
I like it ;)...
Problem ( with 0.2) :
moving a folded method unfolds it
(I'm interested in seeing your solution : I had the same problem with
the LineUpAndDownMoverPlugin)
Alain
I will look into it. If I find a solution, I'll implement it.
Timur
Bug (with latest release) :
before:
-
String a = "", b="";
public void foo() {]]>
System.out.println("foo");
}
action:
-
after :
-
String a = "",
public void fo() {
System.out.println("foo");
}
b="";
Alain