1

Is there a feature or plugin which can change these statements

x = y;
jTextField1.setText(entity.getValue());
...

into these:

y = x;
entity.setValue(jTextField1.getText());
...
Lukas Eder
  • 211,314
  • 129
  • 689
  • 1,509
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
  • If it did exist, I'd expect it to reverse the order too - x = y; z = x -> x = z; y = x ( implies y = value of z at entry ) rather than y = x; x = z; ( implies y is value of x at entry) – Pete Kirkham Mar 06 '09 at 11:41
  • Yes, that would be great, but at least that could be done with any better text editor. – Daniel Rikowski Mar 06 '09 at 11:46

0 Answers0