Reputation: 3850
I just started to develop an Eclipse Plugin. I run the plugin as EclipseApplication. When I make a change in my code I currently have to exit the EclipseApplication and restart it.
Isn't there some hot switching without restarting eclipse all the time?
Upvotes: 2
Views: 645
Reputation: 1600
Eclipse can reload the classes (with some limitations - eg: method signature changes, etc.) if you start your runtime workspace in Debug
mode
Upvotes: 5