Given a code line like this:
[..]
stampsCollector.addStamp(stampId, isFamous, isDamaged, currentlyAvailable, value);
[..]
is there a convenient way to reformat it into this in Netbeans?
[..]
stampsCollector.addStamp(
stampId,
isFamous,
isDamaged,
currentlyAvailable,
value
);
[..]
I don't really mind how this is accomplished: e.g. either during reformatting on-save, or by hitting a custom keyboard-shortcut in each line or by using a recorded macro ...
At the current moment, I keep finding me manually reformatting lots of code lines which is quite time consuming.