Is there something like CodeRush from Java?

756 Views Asked by At

Is there something like CodeRush for Java?

3

There are 3 best solutions below

1
On

The real answer is that Many Java IDE's give the same types of features (as relevant for Java), so you should really check them out and then ask about a specific missing feature that you had in CodeRush that you think would be relevant to a Java IDE.

0
On

While not quite like CodeRush, you can try JetBrains IDE for java (IntelliJ) to get similar functionality to what Resharper offers (not that dissimilar to CodeRush)

0
On

Nothing exist that is exactly like CodeRush for Java. The closest thing you will find is the JetBrains IDE as saret said.

The design philosophy of CodeRush/Refactor! is to never show a modal dialog like Eclipse/Resharper/Visual Studio does for refactoring. Instead CodeRush uses context sensitivity, by watching the AST, and only shows you refactorings that make sense. CodeRush/Refactor draws on top of the editor and animates things where appropriate.

Animation example: enter image description here

Image source: http://www.skorkin.com/2012/07/reordering-method-parameters-with-visual-studio-and-coderush/