views:

68

answers:

0

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());
...