Typical scenario: a class that a lot of people have worked on. I\'d like to sort methods, properties, etc... in alphabetical order.
I\'d like to be able to do this wit
If you are reordering parameters on specific methods, you can use the Refactor > Change Signature if your cursor is on a method name. I use the IntelliJ shortcuts, so for me, the command is Ctrl+Shift+R followed by Ctrl+F6.
After doing so, a dialog will pop up which allows you the reorder method parameters. It will even refactor any implementations of an interface.