|
|
|
|
|
by teknopaul
1547 days ago
|
|
Elipse keeps a complete Java representation of the source code in memory, (not the classes) that's why it can find compile errors before saving.
This comes at the cost of lost of RAM, some projects are just too big for eclipse so IntelliJ is your only option.
But that eclipse model can be used for lots of cool tricks, you have access to it in the plugin API, so for example you can enforce coding standards before even saving code. |
|