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